feat: 删除路由拦截器,添加二级路由
This commit is contained in:
7
src/components/Main/Bucket/index.tsx
Normal file
7
src/components/Main/Bucket/index.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
/** @format */
|
||||
import { FunctionComponent } from "react";
|
||||
|
||||
const Bucket: FunctionComponent = () => {
|
||||
return <div>存储桶</div>;
|
||||
};
|
||||
export default Bucket;
|
7
src/components/Main/File/index.tsx
Normal file
7
src/components/Main/File/index.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
/** @format */
|
||||
import { FunctionComponent } from "react";
|
||||
|
||||
const File: FunctionComponent = () => {
|
||||
return <div>文件管理</div>;
|
||||
};
|
||||
export default File;
|
7
src/components/Main/Home/index.tsx
Normal file
7
src/components/Main/Home/index.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
/** @format */
|
||||
import { FunctionComponent } from "react";
|
||||
|
||||
const MainHome: FunctionComponent = () => {
|
||||
return <div>首页</div>;
|
||||
};
|
||||
export default MainHome;
|
7
src/components/Main/User/index.tsx
Normal file
7
src/components/Main/User/index.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
/** @format */
|
||||
import { FunctionComponent } from "react";
|
||||
|
||||
const User: FunctionComponent = () => {
|
||||
return <div>用户中心</div>;
|
||||
};
|
||||
export default User;
|
Reference in New Issue
Block a user