mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-04 13:48:27 -05:00
* build: bump deps and add some new eslint rules * refactor: run eslint --fix on code to convert to type imports where possible
10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
import type { NextPage } from 'next';
|
|
import React from 'react';
|
|
import UserProfile from '../../components/UserProfile';
|
|
|
|
const UserPage: NextPage = () => {
|
|
return <UserProfile />;
|
|
};
|
|
|
|
export default UserPage;
|