feat: 添加登录页

This commit is contained in:
R524809
2026-02-11 15:39:13 +08:00
parent aa313b7605
commit 161781cbbd
2 changed files with 4 additions and 4 deletions

View File

@@ -6,5 +6,5 @@ import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
</StrictMode>
)

View File

@@ -15,7 +15,7 @@ const StockDailyPricePage = lazy(() => import('@/pages/stock-daily-price'));
export const router = createBrowserRouter([
{
path: '/login',
path: '/',
element: <LoginPage />,
errorElement: <ErrorPage />,
},