7 lines
588 B
7 lines
588 B
import { lazy } from 'react'; |
|
import { ExpertReportDetail } from './detail'; |
|
import { ExpertReportForm } from './form'; |
|
const ServiceExpertReportDetail = lazy(() => import(/* webpackChunkName: "services.component.detail" */ './detail')); |
|
const ServiceExpertReportForm = lazy(() => import(/* webpackChunkName: "services.component.edit" */ './form')); |
|
const ServiceExpertReportList = lazy(() => import(/* webpackChunkName: "services.component.edit" */ './List')); |
|
export { ServiceExpertReportDetail, ServiceExpertReportForm, ServiceExpertReportList, ExpertReportDetail, ExpertReportForm };
|
|
|