import React from 'react' import { Header3 } from '@app/components/general/header' import { WeekSelect } from '@app/components/alerts' import { SwitchInput } from '@app/components/general/switch' import { FormControl } from '@app/components/general/form-control' import { settingsHeadingStyle } from '@app/styles/headings' type NotificationSettingsProps = { filterEmailDatesData: number[] onAlertToggle(): void onFilterEmailDates(dates: number[], morning: boolean): Promise alertEnabled?: boolean defaultDayTime?: boolean } // stateless notification settings export const NotificationSettings = ({ onAlertToggle, onFilterEmailDates, filterEmailDatesData, alertEnabled, defaultDayTime, }: NotificationSettingsProps) => { return (
Notification Settings
Notifications Notifications

Usage is used when notifications is enabled.

) }