11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
import * as React from "react"
|
|
import { AIAssistantInterface } from "@/components/ZoeIA/ai-assistant-interface"
|
|
|
|
export function Demo() {
|
|
return (
|
|
<div className="w-screen">
|
|
<AIAssistantInterface />
|
|
</div>
|
|
)
|
|
}
|