17 lines
394 B
JavaScript
17 lines
394 B
JavaScript
import {
|
|
getDashboardStatistics,
|
|
getLearningProgressSummary,
|
|
} from "./dashboard";
|
|
import { getProjectsList } from "./projectLibrary";
|
|
import { getJobsList, getInterviewsList } from "./companyJobs";
|
|
import { getCurrentStudent } from "./global";
|
|
|
|
export {
|
|
getDashboardStatistics,
|
|
getLearningProgressSummary,
|
|
getProjectsList,
|
|
getJobsList,
|
|
getInterviewsList,
|
|
getCurrentStudent,
|
|
};
|