0

Add placeholder embed pages

This commit is contained in:
Gabe Kangas 2022-05-16 22:55:22 -07:00
parent 5645f0070f
commit 8d7a5d6d6e
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA
3 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,3 @@
export default function ReadOnlyChatEmbed() {
return <div className="chat-embed">chat container goes here</div>;
}

View File

@ -0,0 +1,3 @@
export default function ReadWriteChatEmbed() {
return <div className="standalone-chat-embed">fully featured chat embed goes here</div>;
}

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>
);
}