Files
requestarr/src/pages/profile/settings/notifications/pushbullet.tsx
TheCatLady aeb7a48d72 feat(notif): add Pushbullet and Pushover agents to user notification settings (#1740)
* feat(notif): add Pushbullet and Pushover agents to user notification settings

* docs(notif): add "hint" about user notifications to Pushbullet and Pushover pages

* fix: regenerate DB migration
2021-10-25 19:46:05 +09:00

18 lines
638 B
TypeScript

import { NextPage } from 'next';
import React from 'react';
import UserSettings from '../../../../components/UserProfile/UserSettings';
import UserNotificationSettings from '../../../../components/UserProfile/UserSettings/UserNotificationSettings';
import UserNotificationsPushbullet from '../../../../components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsPushbullet';
const NotificationsPage: NextPage = () => {
return (
<UserSettings>
<UserNotificationSettings>
<UserNotificationsPushbullet />
</UserNotificationSettings>
</UserSettings>
);
};
export default NotificationsPage;