mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-07 15:18:08 -05:00
* feat: add foundation for tooltips * fix: add lang * refactor: remove React import where no longer necessary
21 lines
687 B
TypeScript
21 lines
687 B
TypeScript
import type { NextPage } from 'next';
|
|
|
|
import NotificationsSlack from '../../../components/Settings/Notifications/NotificationsSlack';
|
|
import SettingsLayout from '../../../components/Settings/SettingsLayout';
|
|
import SettingsNotifications from '../../../components/Settings/SettingsNotifications';
|
|
import useRouteGuard from '../../../hooks/useRouteGuard';
|
|
import { Permission } from '../../../hooks/useUser';
|
|
|
|
const NotificationsSlackPage: NextPage = () => {
|
|
useRouteGuard(Permission.ADMIN);
|
|
return (
|
|
<SettingsLayout>
|
|
<SettingsNotifications>
|
|
<NotificationsSlack />
|
|
</SettingsNotifications>
|
|
</SettingsLayout>
|
|
);
|
|
};
|
|
|
|
export default NotificationsSlackPage;
|