mirror of
https://github.com/owncast/owncast.git
synced 2024-12-19 15:56:47 +03:00
10 lines
262 B
TypeScript
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>
|
|
);
|
|
}
|