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

8 lines
259 B
TypeScript
Raw Normal View History

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