feat(frontend): plex settings page

This commit is contained in:
sct
2020-10-30 10:49:35 +00:00
parent 33da7e9df3
commit 47714b698c
7 changed files with 364 additions and 1 deletions

View 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;