import React, { lazy, Suspense } from 'react'; const loadable = (importFunc, { fallback = null } = { fallback: null }) => { const LazyComponent = lazy(importFunc); return props => ( ); }; export default loadable;