feat(frontend): add routing skeleton with workspace chat and login pages
This commit is contained in:
8
src/pages/ChatPage.tsx
Normal file
8
src/pages/ChatPage.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default function ChatPage() {
|
||||
return (
|
||||
<section>
|
||||
<h2>聊天</h2>
|
||||
<p>下一步接入消息拉取/发送/编辑/删除与实时订阅。</p>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
8
src/pages/LoginPage.tsx
Normal file
8
src/pages/LoginPage.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default function LoginPage() {
|
||||
return (
|
||||
<section>
|
||||
<h2>登录</h2>
|
||||
<p>下一步接入 Center 登录与 token 管理。</p>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
8
src/pages/WorkspacePage.tsx
Normal file
8
src/pages/WorkspacePage.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default function WorkspacePage() {
|
||||
return (
|
||||
<section>
|
||||
<h2>工作台</h2>
|
||||
<p>这里会展示 Guild/Channel 概览与会话入口。</p>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user