暂存,修改navigate和添加图片
This commit is contained in:
@@ -2,12 +2,14 @@ import { Navigate, Route, Routes } from 'react-router-dom';
|
||||
import { List } from './edit/List';
|
||||
import { Main } from './layouts';
|
||||
import { Login } from './login/Login';
|
||||
import { Profile } from './edit/Profile';
|
||||
export const App = () => {
|
||||
return (
|
||||
<Routes>
|
||||
<Route element={<Main />}>
|
||||
<Route path='/' element={<Navigate to='/user/edit/list' />}></Route>
|
||||
<Route path='edit/list' element={<List />} />
|
||||
<Route path='profile' element={<Profile />} />
|
||||
</Route>
|
||||
<Route path='login' element={<Login />} />
|
||||
</Routes>
|
||||
|
||||
Reference in New Issue
Block a user