feat(settings): add settings pages and layout with routing
This commit is contained in:
5
src/pages/setting/index.tsx
Normal file
5
src/pages/setting/index.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
export { default as ModelsSetting } from './models';
|
||||
export { default as SystemSetting } from './system';
|
||||
export { default as TeamsSetting } from './teams';
|
||||
export { default as ProfileSetting } from './profile';
|
||||
export { default as MCPSetting } from './mcp';
|
||||
8
src/pages/setting/mcp.tsx
Normal file
8
src/pages/setting/mcp.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
function MCPSetting() {
|
||||
return (
|
||||
<div>
|
||||
<h1>MCP Setting</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
export default MCPSetting;
|
||||
9
src/pages/setting/models.tsx
Normal file
9
src/pages/setting/models.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
function ModelsSetting() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Model Setting</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default ModelsSetting;
|
||||
9
src/pages/setting/profile.tsx
Normal file
9
src/pages/setting/profile.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
function ProfileSetting() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Profile Setting</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default ProfileSetting;
|
||||
9
src/pages/setting/system.tsx
Normal file
9
src/pages/setting/system.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
function SystemSetting() {
|
||||
return (
|
||||
<div>
|
||||
<h1>System Setting</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default SystemSetting;
|
||||
9
src/pages/setting/teams.tsx
Normal file
9
src/pages/setting/teams.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
function TeamsSetting() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Teams Setting</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default TeamsSetting;
|
||||
Reference in New Issue
Block a user