Код: Выделить всё
import("@abc/order")Код: Выделить всё
const Router = () => {
const dynamicRoutes = routeConfig.map((route) => {
const Components: any = Loadable({
//@ts-ignore
loader: () => import(`@ecommerce/order`).then(mod => mod[route.name]),
loading: "Loading...",
});
return ()
});
return (
{dynamicRoutes}
);
};
Подробнее здесь: https://stackoverflow.com/questions/795 ... h-in-react
Мобильная версия