1 2 3 4 5 6 7
import { lazy } from "react"; const Admin = lazy( () => import(/* webpackChunkName: "admin" */ "./Admin") ); export default Admin;