mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 04:08:45 -05:00
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
import { NextPage } from 'next';
|
|
import React from 'react';
|
|
import TvCast from '../../../components/TvDetails/TvCast';
|
|
|
|
const TvCastPage: NextPage = () => {
|
|
return <TvCast />;
|
|
};
|
|
|
|
export default TvCastPage;
|