laradock/react/src/utils/LazyLoaded.js

6 lines
262 B
JavaScript

import React from "react";
export const Home = React.lazy(() => import('../containers/Home/Home'));
export const Login = React.lazy(() => import('../containers/Login/Login'));
export const NotFound = React.lazy(() => import('../components/NotFound/NotFound'));