MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/TextEditor/TextEditorLoadable/TextEditorLoadable.jsx

Summary

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

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

const TextEditor = createLoader({ path });

const TextEditorLoadable = ({ ...rest }) => (
  <TextEditor {...rest} />
);

export default TextEditorLoadable;