import * as React from "react"; import UserSettingsLayout from "../../layouts/UserSettingsLayout"; import { Switch } from "../../components/Switch"; import { Metadata } from "../../components/Metadata"; import inboxImg from "../../../static/images/inbox.svg"; const NotificationsPage = () => { return ( <> Notifications

Notifications

{/* TODO: saves on change */} I agree to receive emails of the latest news, updates and offers.

Statistics

Check below to be notified by email when your usage approaches your plan's limits.

  • {/* TODO: saves on change */} Storage limit
  • {/* TODO: saves on change */} Files limit
); }; NotificationsPage.Layout = UserSettingsLayout; export default NotificationsPage;