feat(frontend): add full cast page for movies and series
This commit is contained in:
9
src/pages/movie/[movieId]/cast.tsx
Normal file
9
src/pages/movie/[movieId]/cast.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { NextPage } from 'next';
|
||||
import React from 'react';
|
||||
import MovieCast from '../../../components/MovieDetails/MovieCast';
|
||||
|
||||
const MovieCastPage: NextPage = () => {
|
||||
return <MovieCast />;
|
||||
};
|
||||
|
||||
export default MovieCastPage;
|
||||
Reference in New Issue
Block a user