mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 16:56:22 +02:00
11 lines
298 B
TypeScript
11 lines
298 B
TypeScript
"use client";
|
|
|
|
import { useParams } from "next/navigation";
|
|
import { PublicChatView } from "@/components/public-chat/public-chat-view";
|
|
|
|
export default function PublicChatPage() {
|
|
const params = useParams();
|
|
const token = params.token as string;
|
|
|
|
return <PublicChatView shareToken={token} />;
|
|
}
|