mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
7 lines
259 B
TypeScript
7 lines
259 B
TypeScript
import { PublicChatView } from "@/components/public-chat/public-chat-view";
|
|
|
|
export default async function PublicChatPage({ params }: { params: Promise<{ token: string }> }) {
|
|
const { token } = await params;
|
|
|
|
return <PublicChatView shareToken={token} />;
|
|
}
|