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