Add placeholder embed pages

This commit is contained in:
Gabe Kangas
2022-05-16 22:55:22 -07:00
parent 5645f0070f
commit 8d7a5d6d6e
3 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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>
);
}