feat: 暂存,添加上传文件

This commit is contained in:
2024-10-07 01:53:39 +08:00
parent 272ceaa6a6
commit fd99875461
15 changed files with 788 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ import { App as AiAgentApp } from './pages/ai-agent';
import { App as UserApp } from './pages/user';
import { App as ChatApp } from './pages/chat-manager';
import { App as GitHubApp } from './pages/github';
import { App as UserAppApp } from './pages/app';
import { App as FileApp } from './pages/file';
import '@abearxiong/container/dist/container.css';
@@ -33,6 +35,9 @@ export const App = () => {
<Route path='/user/*' element={<UserApp />} />
<Route path='/chat/*' element={<ChatApp />} />
<Route path='/github/*' element={<GitHubApp />} />
<Route path='/app/*' element={<UserAppApp />} />
<Route path='/file/*' element={<FileApp />} />
<Route path='/404' element={<div>404</div>} />
<Route path='*' element={<div>404</div>} />
</Routes>