feat(router): 添加路由配置和新页面组件

- 在 src/index.tsx 中添加 Route 组件和引入 Models 页面
- 新增 Models 组件文件 (src/pages/Models.tsx)
- 新增 Settings 组件文件 (src/pages/Settings.tsx)
This commit is contained in:
Vixalie
2025-08-04 22:44:49 +08:00
parent 76fd04aa74
commit 1a06d39059
3 changed files with 24 additions and 2 deletions

7
src/pages/Settings.tsx Normal file
View File

@@ -0,0 +1,7 @@
import { Component } from 'solid-js';
const Settings: Component = () => {
return <div class="workspace" />;
};
export default Settings;