import React, { useEffect } from 'react'; import cn from 'classnames'; import stl from './notifications.module.css'; import { Toggler } from 'UI'; import { useStore } from "App/mstore"; import { observer } from 'mobx-react-lite' import withPageTitle from 'HOCs/withPageTitle'; function Notifications() { const { weeklyReportStore } = useStore() useEffect(() => { void weeklyReportStore.fetchReport() }, []); const onChange = () => { const newValue = !weeklyReportStore.weeklyReport void weeklyReportStore.fetchEditReport(newValue) }; return (
{

{'Notifications'}

}
Weekly project summary
Receive weekly report for each project on email.
); } export default withPageTitle('Notifications - OpenReplay Preferences')(observer(Notifications))