File size: 343 Bytes
a3f1817
df83860
b965e2b
df83860
a3f1817
 
 
df83860
1
2
3
4
5
6
7
8
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} />)
}