mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-05 22:28:20 -05:00
9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
import UserProfile from '@app/components/UserProfile';
|
|
import type { NextPage } from 'next';
|
|
|
|
const UserPage: NextPage = () => {
|
|
return <UserProfile />;
|
|
};
|
|
|
|
export default UserPage;
|