chore: basic layout
This commit is contained in:
13
src/routes/login.tsx
Normal file
13
src/routes/login.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { createFileRoute } from '@tanstack/react-router';
|
||||
|
||||
export const Route = createFileRoute('/login')({
|
||||
component: LoginPage,
|
||||
});
|
||||
|
||||
function LoginPage() {
|
||||
return (
|
||||
<div style={{ padding: '50px', textAlign: 'center' }}>
|
||||
<h1>登录页面</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user