mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-02 12:48:45 -05:00
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
import DiscoverWatchlist from '@app/components/Discover/DiscoverWatchlist';
|
|
import type { NextPage } from 'next';
|
|
|
|
const WatchlistPage: NextPage = () => {
|
|
return <DiscoverWatchlist />;
|
|
};
|
|
|
|
export default WatchlistPage;
|