owncast/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.tsx

7 lines
183 B
TypeScript
Raw Normal View History

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