This commit is contained in:
2024-12-04 21:54:36 +08:00
parent c2ebbac997
commit 59b4683b64
3 changed files with 43 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ import { Navigate, Route, Routes } from 'react-router-dom';
import { List } from './edit/List';
import { Main } from './layouts';
import { Login } from './login/Login';
import { Login as WxLogin } from './wx/Login';
import { Profile } from './edit/Profile';
export const App = () => {
return (
@@ -12,6 +13,7 @@ export const App = () => {
<Route path='profile' element={<Profile />} />
</Route>
<Route path='login' element={<Login />} />
<Route path='wx/login' element={<WxLogin />} />
</Routes>
);
};