CJ_Clippy 5e83742341
Some checks failed
ci / build (push) Failing after 1s
create migrations-data
2024-12-16 12:39:23 -08:00

21 lines
444 B
TypeScript

import StreamPage from '@/app/components/stream-page';
import { getStreamByUUID } from '@/app/lib/streams';
interface IPageParams {
params: {
uuid: string;
}
}
export default async function Page ({ params: { uuid } }: IPageParams) {
const stream = await getStreamByUUID(uuid);
console.log(`getting stream by uuid. uuid=${uuid}`)
return (
<>
<StreamPage stream={stream} />
</>
)
}