owncast/web/components/video/StatusBar.jsx
2022-04-27 23:19:45 -07:00

9 lines
177 B
JavaScript

interface Props {
online: boolean;
viewers: number;
timer: string;
}
export default function StatusBar(props: Props) {
return <div>Stream status bar goes here</div>;
}