* 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
18 lines
638 B
TypeScript
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;
|