3 changed files with 16 additions and 0 deletions
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
export default function ReadOnlyChatEmbed() { |
||||
return <div className="chat-embed">chat container goes here</div>; |
||||
} |
||||
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
export default function ReadWriteChatEmbed() { |
||||
return <div className="standalone-chat-embed">fully featured chat embed goes here</div>; |
||||
} |
||||
@ -0,0 +1,10 @@
@@ -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> |
||||
); |
||||
} |
||||
Loading…
Reference in new issue