mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-31 19:59:31 -05:00
15 lines
407 B
TypeScript
15 lines
407 B
TypeScript
import { NextPage } from 'next';
|
|
import React from 'react';
|
|
import UserSettings from '../../../components/UserProfile/UserSettings';
|
|
import UserGeneralSettings from '../../../components/UserProfile/UserSettings/UserGeneralSettings';
|
|
|
|
const UserSettingsMainPage: NextPage = () => {
|
|
return (
|
|
<UserSettings>
|
|
<UserGeneralSettings />
|
|
</UserSettings>
|
|
);
|
|
};
|
|
|
|
export default UserSettingsMainPage;
|