2020-11-02 20:52:41 -08: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 12:58:06 -06:00
|
|
|
const EulaModalFeature = lazy(() => import(/* webpackChunkName: "feature.eula" */'feature/eula/EulaModalFeature'));
|
2021-09-12 16:22:34 -06:00
|
|
|
const JavaVersionModalFeature = lazy(() => import(/* webpackChunkName: "feature.java_version" */'feature/java_version/JavaVersionModalFeature'));
|
2020-11-02 20:52:41 -08:00
|
|
|
|
2021-08-02 23:32:10 -04:00
|
|
|
export { EulaModalFeature, JavaVersionModalFeature };
|