multica/apps/web/app/components/chat.tsx
Naiyuan Qing 1ec6221664 feat(web): add Chat page component placeholder
Create empty Chat component and wire it into the main page,
replacing the previous mock Markdown/ChatInput content.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 21:05:10 +08:00

7 lines
83 B
TypeScript

export function Chat() {
return (
<div>
<h1>Chat</h1>
</div>
)
}