frontend_adaptive_learning/src/roles/user/dashboard/services/dashboardService.jsx

11 lines
216 B
React
Raw Normal View History

import axiosInstance from '../../../../utils/axiosInstance'
2024-10-31 02:32:14 +00:00
const fetchJourney = async () => {
const response = await axiosInstance.get(`/topic/complete`)
return response.data
}
2024-10-31 02:32:14 +00:00
export default {
fetchJourney,
}