mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00

* feat(notifications): add pushover integration * refactor(pushover): group i18n translations
18 lines
561 B
TypeScript
18 lines
561 B
TypeScript
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;
|