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

14
src/pages/user/index.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { Navigate, Route, Routes } from 'react-router-dom';
import { List } from './edit/List';
import { Main } from './layouts';
export const App = () => {
return (
<Routes>
<Route element={<Main />}>
<Route path='/' element={<Navigate to='/user/edit/list' />}></Route>
<Route path='edit/list' element={<List />} />
</Route>
</Routes>
);
};