1 2 3 4 5 6 7 8 9import React from "react"; import TvContainer from "containers/Tv"; const TvPage = () => { return <TvContainer />; }; export default TvPage;
1 2 3 4 5 6 7 8 9
import React from "react"; import TvContainer from "containers/Tv"; const TvPage = () => { return <TvContainer />; }; export default TvPage;