* feat: add foundation for tooltips * fix: add lang * refactor: remove React import where no longer necessary
9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
import type { NextPage } from 'next';
|
|
import UpcomingMovies from '../../../components/Discover/Upcoming';
|
|
|
|
const UpcomingMoviesPage: NextPage = () => {
|
|
return <UpcomingMovies />;
|
|
};
|
|
|
|
export default UpcomingMoviesPage;
|