jbilcke-hf's picture
jbilcke-hf HF staff
renaming to avoid confusion
a3f1817
raw
history blame
No virus
343 Bytes
import { AppQueryProps } from "@/types"
import { Main } from "../main"
import { getChannel } from "../server/actions/ai-tube-hf/getChannel"
export default async function ChannelPage({ searchParams: { c: channelId } }: AppQueryProps) {
const channel = await getChannel({ channelId, neverThrow: true })
return (<Main channel={channel} />)
}