mirror of
https://github.com/owncast/owncast.git
synced 2025-01-08 17:47:32 +03:00
10 lines
177 B
React
10 lines
177 B
React
|
interface Props {
|
||
|
online: boolean;
|
||
|
viewers: number;
|
||
|
timer: string;
|
||
|
}
|
||
|
|
||
|
export default function StatusBar(props: Props) {
|
||
|
return <div>Stream status bar goes here</div>;
|
||
|
}
|