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