project-nomad/admin/inertia/pages/chat.tsx

13 lines
461 B
TypeScript

import { Head, usePage } from '@inertiajs/react'
import ChatComponent from '~/components/chat'
export default function Chat(props: { settings: { chatSuggestionsEnabled: boolean } }) {
const { aiAssistantName } = usePage<{ aiAssistantName: string }>().props
return (
<div className="w-full h-full">
<Head title={aiAssistantName} />
<ChatComponent enabled={true} suggestionsEnabled={props.settings.chatSuggestionsEnabled} />
</div>
)
}