📅  最后修改于: 2022-03-11 15:02:43.748000             🧑  作者: Mango
// React Router v6 with lazy loading and
const Home = lazy(() => import('./home'));
const About = lazy(() => import('./about'));
function App() {
return (
Loading...}>
} />
} />
);
}