Add more placeholder components and some mocks

This commit is contained in:
Gabe Kangas
2022-05-12 20:52:19 -07:00
parent d427c0ad70
commit ae78716572
26 changed files with 305 additions and 18 deletions

View File

@@ -0,0 +1,6 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
interface Props {}
export default function NotifyReminderPopup(props: Props) {
return <div>Popup reminder goes here</div>;
}