mirror of
https://github.com/owncast/owncast.git
synced 2024-11-27 09:45:36 +03:00
7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
||
|
interface Props {}
|
||
|
|
||
|
export default function NotifyReminderPopup(props: Props) {
|
||
|
return <div>Popup reminder goes here</div>;
|
||
|
}
|