mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
feat(frontend): plex settings page
This commit is contained in:
14
src/pages/settings/plex.tsx
Normal file
14
src/pages/settings/plex.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import React from 'react';
|
||||
import type { NextPage } from 'next';
|
||||
import SettingsLayout from '../../components/Settings/SettingsLayout';
|
||||
import SettingsPlex from '../../components/Settings/SettingsPlex';
|
||||
|
||||
const PlexSettingsPage: NextPage = () => {
|
||||
return (
|
||||
<SettingsLayout>
|
||||
<SettingsPlex />
|
||||
</SettingsLayout>
|
||||
);
|
||||
};
|
||||
|
||||
export default PlexSettingsPage;
|
||||
Reference in New Issue
Block a user