* feat: add foundation for tooltips * fix: add lang * refactor: remove React import where no longer necessary
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
import type { NextPage } from 'next';
|
|
|
|
import TvCast from '../../../components/TvDetails/TvCast';
|
|
|
|
const TvCastPage: NextPage = () => {
|
|
return <TvCast />;
|
|
};
|
|
|
|
export default TvCastPage;
|