MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/GlossaryEditor/GlossaryEditorPage/GlossaryEditorLoadable.jsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import createLoader from '../../Loadable';

export const path = () => import('./GlossaryEditorPage');

const GlossaryEditorPage = createLoader({ path, shouldPreload: false });

const GlossaryEditorPageLoadable = ({ ...rest }) => (
  <GlossaryEditorPage {...rest} />
);

export default GlossaryEditorPageLoadable;