7 lines
232 B
TypeScript
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} />;
|
|
}
|