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>;
|
|
}
|