owncast/web/pages/embed/video/index.tsx

11 lines
262 B
TypeScript
Raw Normal View History

2022-05-17 08:55:22 +03:00
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>
);
}