mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 15:07:55 -05:00
7 lines
241 B
TypeScript
7 lines
241 B
TypeScript
import ChatClient from '@/app/chat/[identifier]/chat'
|
|
|
|
export default async function ChatPage({ params }: { params: Promise<{ identifier: string }> }) {
|
|
const { identifier } = await params
|
|
return <ChatClient identifier={identifier} />
|
|
}
|