mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00: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>;
|
|
}
|