MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/CdoPage/CdoPageLoadable.jsx

Summary

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

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

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

const CdoPageLoadable = ({ ...rest }) => (
  <CdoPage {...rest} />
);

export default CdoPageLoadable;