feat(frontend/api): tv details page

This commit is contained in:
sct
2020-09-20 14:09:40 +09:00
parent 8f21358f79
commit 02cbb5b030
12 changed files with 953 additions and 51 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
import { NextPage } from 'next';
import TvRecommendations from '../../../components/TvDetails/TvRecommendations';
const TvRecommendationsPage: NextPage = () => {
return <TvRecommendations />;
};
export default TvRecommendationsPage;