mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 04:08:45 -05:00
feat: user profile/settings pages (#958)
This commit is contained in:
14
src/pages/profile/settings/index.tsx
Normal file
14
src/pages/profile/settings/index.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { NextPage } from 'next';
|
||||
import React from 'react';
|
||||
import UserSettings from '../../../components/UserProfile/UserSettings';
|
||||
import UserGeneralSettings from '../../../components/UserProfile/UserSettings/UserGeneralSettings';
|
||||
|
||||
const UserSettingsPage: NextPage = () => {
|
||||
return (
|
||||
<UserSettings>
|
||||
<UserGeneralSettings />
|
||||
</UserSettings>
|
||||
);
|
||||
};
|
||||
|
||||
export default UserSettingsPage;
|
||||
Reference in New Issue
Block a user