MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/AoPage/AoPageLoadable.jsx

Summary

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

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

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

const AoPageLoadable = ({ ...rest }) => (
  <AoPage {...rest} />
);

export default AoPageLoadable;