jbilcke-hf's picture
jbilcke-hf HF staff
just a lil bit of plumbing
1185ec1
raw
history blame
No virus
608 Bytes
import { AppQueryProps } from "@/types/general"
import { Main } from "../main"
import { getChannel } from "../server/actions/ai-tube-hf/getChannel"
import { getChannelVideos } from "../server/actions/ai-tube-hf/getChannelVideos"
export default async function ChannelPage({ searchParams: { c: channelId } }: AppQueryProps) {
const channel = await getChannel({ channelId, neverThrow: true })
const publicChannelVideos = await getChannelVideos({
channel: channel,
status: "published",
neverThrow: true,
})
return (<Main channel={channel} publicChannelVideos={publicChannelVideos} />)
}