mirror of
https://github.com/owncast/owncast.git
synced 2024-11-28 03:01:32 +03:00
11 lines
262 B
TypeScript
11 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>
|
||
|
);
|
||
|
}
|