aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/migrating/admin/index.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2023-08-02 02:52:07 +0800
committercrupest <crupest@outlook.com>2023-08-02 02:52:07 +0800
commit645a88e7e35d15cec6106709c42b071bec045e0d (patch)
tree8c34d8ac3ba177f725e31b55bdf689a303cfee9a /FrontEnd/src/migrating/admin/index.tsx
parent0c5c9d51c51d07aecb6f4a01586c81c824141cb2 (diff)
downloadtimeline-645a88e7e35d15cec6106709c42b071bec045e0d.tar.gz
timeline-645a88e7e35d15cec6106709c42b071bec045e0d.tar.bz2
timeline-645a88e7e35d15cec6106709c42b071bec045e0d.zip
...
Diffstat (limited to 'FrontEnd/src/migrating/admin/index.tsx')
-rw-r--r--FrontEnd/src/migrating/admin/index.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/FrontEnd/src/migrating/admin/index.tsx b/FrontEnd/src/migrating/admin/index.tsx
new file mode 100644
index 00000000..0467711d
--- /dev/null
+++ b/FrontEnd/src/migrating/admin/index.tsx
@@ -0,0 +1,7 @@
+import { lazy } from "react";
+
+const Admin = lazy(
+ () => import(/* webpackChunkName: "admin" */ "./Admin")
+);
+
+export default Admin;