project-nomad/admin/inertia/pages/chat.tsx
2026-01-31 20:39:49 -08:00

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>
)
}