Files
jellyseerr/src/pages/discover/trending.tsx

9 lines
192 B
TypeScript

import Trending from '@app/components/Discover/Trending';
import type { NextPage } from 'next';
const TrendingPage: NextPage = () => {
return <Trending />;
};
export default TrendingPage;