mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-03 13:18:53 -05:00
* build: bump deps and add some new eslint rules * refactor: run eslint --fix on code to convert to type imports where possible
18 lines
643 B
TypeScript
18 lines
643 B
TypeScript
import type { 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;
|