lazy load + nav2 link

This commit is contained in:
Primakov Alexandr Alexandrovich
2024-10-24 18:51:40 +03:00
parent 4440cf7fa2
commit 008c2d3cb7
9 changed files with 77 additions and 8 deletions
+4
View File
@@ -0,0 +1,4 @@
import { lazy } from 'react'
export const AboutPage = lazy(() => import(/* webpackChunkName: "about" */ './about'))
export const ProfilePage = lazy(() => import(/* webpackChunkName: "profile" */ './profile'))