feat: other email notifications for approved/available

also adds UI to configure email notifications to frontend
This commit is contained in:
sct
2020-11-24 14:36:31 +00:00
parent f8c01fbc83
commit 0d73d88f35
9 changed files with 390 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
import { NextPage } from 'next';
import React from 'react';
import SettingsLayout from '../../../components/Settings/SettingsLayout';
import SettingsNotifications from '../../../components/Settings/SettingsNotifications';
import NotificationsEmail from '../../../components/Settings/Notifications/NotificationsEmail';
const NotificationsPage: NextPage = () => {
return (
<SettingsLayout>
<SettingsNotifications>
<NotificationsEmail />
</SettingsNotifications>
</SettingsLayout>
);
};
export default NotificationsPage;