9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
import type { NextPage } from 'next';
|
|
import DiscoverWatchlist from '../../components/Discover/DiscoverWatchlist';
|
|
|
|
const WatchlistPage: NextPage = () => {
|
|
return <DiscoverWatchlist />;
|
|
};
|
|
|
|
export default WatchlistPage;
|