mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-04-02 14:59:26 +02:00
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
import { Head } from '@inertiajs/react'
|
|
import ChatComponent from '~/components/chat'
|
|
|
|
export default function Chat() {
|
|
return (
|
|
<div className="w-full h-full">
|
|
<Head title="AI Assistant" />
|
|
<ChatComponent enabled={true} />
|
|
</div>
|
|
)
|
|
}
|