2020-11-03 04:52:41 +00:00
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom features should be registered here as lazy components so that they do
|
|
|
|
* not impact the generated JS bundle size. They will be automatically loaded in
|
|
|
|
* whenever they are actually loaded for the client (which may be never, depending
|
|
|
|
* on the feature and the egg).
|
|
|
|
*/
|
2021-07-09 18:58:06 +00:00
|
|
|
const EulaModalFeature = lazy(() => import(/* webpackChunkName: "feature.eula" */'feature/eula/EulaModalFeature'));
|
2020-11-03 04:52:41 +00:00
|
|
|
|
|
|
|
export { EulaModalFeature };
|