journal.pl/src/pages/index.ts

7 lines
449 B
TypeScript
Raw Normal View History

import { lazy } from 'react'
export const CourseListPage = lazy(() => import(/* webpackChunkName: "course-list" */ './course-list'));
export const LessonDetailsPage = lazy(() => import(/* webpackChunkName: "lesson-details" */ './lesson-details'));
export const LessonListPage = lazy(() => import(/* webpackChunkName: "lesson-list" */ './lesson-list'));
export const UserPage = lazy(() => import(/* webpackChunkName: "user-page" */ './user-page'));