feat(notifications): add pushover integration (#574)

* feat(notifications): add pushover integration

* refactor(pushover): group i18n translations
This commit is contained in:
Jakob Ankarhem
2021-01-05 05:19:25 +01:00
committed by GitHub
parent 67f2b57f00
commit ee5d0181fc
10 changed files with 558 additions and 0 deletions

View File

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