10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
import React from 'react';
|
|
import { NextPage } from 'next';
|
|
import DiscoverTv from '../../../components/Discover/DiscoverTv';
|
|
|
|
const DiscoverTvPage: NextPage = () => {
|
|
return <DiscoverTv />;
|
|
};
|
|
|
|
export default DiscoverTvPage;
|