feat: add edit user

This commit is contained in:
2024-09-28 13:06:48 +08:00
parent 81eb9e3f11
commit 7e12cbdefc
6 changed files with 330 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ import { App as CodeEditorApp } from './pages/code-editor';
import { App as MapApp } from './pages/map';
import { App as PromptApp } from './pages/prompt';
import { App as AiAgentApp } from './pages/ai-agent';
import { App as UserApp } from './pages/user';
import '@abearxiong/container/dist/container.css';
export const App = () => {
@@ -26,6 +27,7 @@ export const App = () => {
<Route path='/map/*' element={<MapApp />} />
<Route path='/prompt/*' element={<PromptApp />} />
<Route path='/agent/*' element={<AiAgentApp />} />
<Route path='/user/*' element={<UserApp />} />
<Route path='/404' element={<div>404</div>} />
<Route path='*' element={<div>404</div>} />
</Routes>