mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-27 17:56:25 +02:00
11 lines
267 B
TypeScript
11 lines
267 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} />;
|
|
}
|