Browse Source

init connect page

tumao 4 years ago
parent
commit
e01f9c0ba1

+ 3 - 0
client/src/pages/connect/Connect.tsx

@@ -0,0 +1,3 @@
+const Connect = () => {};
+
+export default Connect;

+ 0 - 0
client/src/pages/connect/Types.ts


+ 0 - 0
client/src/pages/dashboard/Dashboard.tsx → client/src/pages/overview/Overview.tsx


+ 2 - 2
client/src/router/Config.ts

@@ -1,9 +1,9 @@
-import Dashboard from '../pages/dashboard/Dashboard';
+import Overview from '../pages/overview/Overview';
 
 
 const RouterConfig = [
 const RouterConfig = [
   {
   {
     path: '/',
     path: '/',
-    component: Dashboard,
+    component: Overview,
     auth: true,
     auth: true,
   },
   },
 ];
 ];