owncast/web/components/video/StatusBar.jsx

10 lines
177 B
React
Raw Normal View History

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