owncast/web/pages/embed/video/index.tsx
2022-05-16 22:55:22 -07:00

10 lines
262 B
TypeScript

import OwncastPlayer from '../../../components/video/OwncastPlayer';
export default function VideoEmbed() {
const online = false;
return (
<div className="video-embed">
<OwncastPlayer source="/hls/stream.m3u8" online={online} />
</div>
);
}