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>
7 lines
83 B
TypeScript
7 lines
83 B
TypeScript
export function Chat() {
|
|
return (
|
|
<div>
|
|
<h1>Chat</h1>
|
|
</div>
|
|
)
|
|
}
|