mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 20:28:40 -05:00
9 lines
192 B
TypeScript
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;
|