Files
2026-07-17 21:48:37 +05:30

7 lines
232 B
TypeScript

import { ChannelView } from "@/components/message/ChannelView";
export default async function ChannelPage({ params }: { params: Promise<{ id: string }> }) {
const { id } = await params;
return <ChannelView channelId={id} />;
}