MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/ProfileDashboard/UserProfile/UserProfileGeneralInformation/EmployeeProfileLinkLoadable.jsx

Summary

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

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

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

const EPLLoadable = ({ ...rest }) => (
  <Loadable {...rest} />
);

export default EPLLoadable;