forked from mosaicstack/stack
Co-authored-by: Jason Woltje <[email protected]> Co-committed-by: Jason Woltje <[email protected]>
9 lines
233 B
TypeScript
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>
|
|
);
|
|
}
|