mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
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;
|
||||
9
src/pages/tv/[tvId]/cast.tsx
Normal file
9
src/pages/tv/[tvId]/cast.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { NextPage } from 'next';
|
||||
import React from 'react';
|
||||
import TvCast from '../../../components/TvDetails/TvCast';
|
||||
|
||||
const TvCastPage: NextPage = () => {
|
||||
return <TvCast />;
|
||||
};
|
||||
|
||||
export default TvCastPage;
|
||||
Reference in New Issue
Block a user