/* 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 (