SurfSense/surfsense_web/app/public/[token]/page.tsx

12 lines
267 B
TypeScript
Raw Normal View History

2026-01-26 17:08:26 +02:00
import { PublicChatView } from "@/components/public-chat/public-chat-view";
export default async function PublicChatPage({
params,
}: {
params: Promise<{ token: string }>;
}) {
const { token } = await params;
2026-01-26 17:08:26 +02:00
return <PublicChatView shareToken={token} />;
2026-01-26 17:08:26 +02:00
}