You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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 };
|
|
|