Files
stack-mos-dt-0/apps/web/src/app/(dashboard)/chat/page.tsx
T
2026-03-13 13:18:09 +00:00

9 lines
233 B
TypeScript

export default function ChatPage(): React.ReactElement {
return (
<div>
<h1 className="text-2xl font-semibold">Chat</h1>
<p className="mt-2 text-text-secondary">Conversations will appear here.</p>
</div>
);
}