Files
web/apps/scandic-web/components/ChatbotScript/index.tsx
Erik Tiekstra 800df0ade9 feat(BOOK-67): Added functionality to show/hide the chatbot
Approved-by: Linus Flood
2025-10-16 10:59:47 +00:00

10 lines
246 B
TypeScript

import { env } from "@/env/server"
import { ChatbotClient } from "@/components/ChatbotScript/Client"
export default async function ChatbotScript() {
const liveLangs = env.CHATBOT_LIVE_LANGS
return <ChatbotClient liveLangs={liveLangs} />
}