[feat] front: 페이지 골격(Login/List/Chat) 추가
- 라우팅 대상 빈 화면 페이지 3종 - named + default export 동시 제공 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
ec4ee78fcb
commit
6963f0bd40
5
front/src/pages/ChatPage.tsx
Normal file
5
front/src/pages/ChatPage.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export function ChatPage() {
|
||||
return <main className="min-h-svh" />
|
||||
}
|
||||
|
||||
export default ChatPage
|
||||
5
front/src/pages/ListPage.tsx
Normal file
5
front/src/pages/ListPage.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export function ListPage() {
|
||||
return <main className="min-h-svh" />
|
||||
}
|
||||
|
||||
export default ListPage
|
||||
5
front/src/pages/LoginPage.tsx
Normal file
5
front/src/pages/LoginPage.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export function LoginPage() {
|
||||
return <main className="min-h-svh" />
|
||||
}
|
||||
|
||||
export default LoginPage
|
||||
Loading…
Reference in New Issue
Block a user