mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-02 04:39:14 -05:00
18 lines
533 B
TypeScript
18 lines
533 B
TypeScript
import React from 'react';
|
|
import type { NextPage } from 'next';
|
|
import SettingsLayout from '../../components/Settings/SettingsLayout';
|
|
import SettingsServices from '../../components/Settings/SettingsServices';
|
|
import { Permission } from '../../hooks/useUser';
|
|
import useRouteGuard from '../../hooks/useRouteGuard';
|
|
|
|
const ServicesSettingsPage: NextPage = () => {
|
|
useRouteGuard(Permission.MANAGE_USERS);
|
|
return (
|
|
<SettingsLayout>
|
|
<SettingsServices />
|
|
</SettingsLayout>
|
|
);
|
|
};
|
|
|
|
export default ServicesSettingsPage;
|