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