blob: 889bbf6e7e92d90f46b2a3d69a8fb19a700e62ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/**
*
* Asynchronously loads the component for {{ properCase name }}
*
*/
import Loadable from 'react-loadable';
export default Loadable({
loader: () => import('./index'),
loading: () => null,
});
|