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