View difference between Paste ID: dJmLce8Y and XT96DaeV
SHOW: | | - or go back to the newest paste.
1
const Home = React.lazy(() => import('../../../pages/home/home'));
2
3
export default {
4
	path: '/',
5
	Component: ({data}) =>
6
		<Suspense fallback={<div/>}>
7
			<Home {...data}/>
8
		</Suspense>
9
};