mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-10 08:38:17 -05:00
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
import PersonDetails from '@app/components/PersonDetails';
|
|
import type { NextPage } from 'next';
|
|
|
|
const MoviePage: NextPage = () => {
|
|
return <PersonDetails />;
|
|
};
|
|
|
|
export default MoviePage;
|