* build: bump deps and add some new eslint rules * refactor: run eslint --fix on code to convert to type imports where possible
10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
import React from 'react';
|
|
import type { NextPage } from 'next';
|
|
import DiscoverMovieStudio from '../../../../../components/Discover/DiscoverStudio';
|
|
|
|
const DiscoverMoviesStudioPage: NextPage = () => {
|
|
return <DiscoverMovieStudio />;
|
|
};
|
|
|
|
export default DiscoverMoviesStudioPage;
|