mirror of
https://github.com/owncast/owncast.git
synced 2025-01-21 23:53:52 +03:00
10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
|
// import s from './OfflineBanner.module.scss';
|
||
|
|
||
|
interface Props {
|
||
|
text: string;
|
||
|
}
|
||
|
|
||
|
export default function OfflineBanner({ text }: Props) {
|
||
|
return <div>{text}</div>;
|
||
|
}
|