/* eslint-disable react/no-unescaped-entities */ /* eslint-disable @typescript-eslint/no-unused-vars */ import { Row, Col, Switch, Typography } from 'antd'; import { useState } from 'react'; const { Title } = Typography; // interface Props {} export default function BrowserNotifyModal() { const [enabled, setEnabled] = useState(false); const onSwitchToggle = (checked: Boolean) => { setEnabled(true); }; return (
{' '} {enabled ? 'Enabled' : 'Disabled'} You'll need to allow your browser to receive notifications from Owncast Nightly, first. Fake push notification prompt example goes here. Browser Notifications Get notified right in the browser each time this stream goes live. Blah blah blah more description text goes here.
); }