Add more mocks

This commit is contained in:
Gabe Kangas
2022-05-20 12:32:26 -07:00
parent c03be0cf9f
commit 3bc13fd08a
8 changed files with 53 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
// import s from './OfflineBanner.module.scss';
interface Props {
text: string;
}
export default function OfflineBanner({ text }: Props) {
return <div>{text}</div>;
}