Guest User

Untitled

a guest
Dec 17th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. /*....*/
  2. import {getVideoCategoryIds} from '../../store/reducers/videos';
  3.  
  4. class Home extends React.Component {
  5. render() {
  6. const trendingVideos = this.getTrendingVideos();
  7. const categoryGrids = this.getVideoGridsForCategories();
  8.  
  9. return (
  10. <div className='home-content'>
  11. <div className="responsive-video-grid-container">
  12. <VideoGrid title='Trending' videos={trendingVideos}/>
  13. {categoryGrids}
  14. </div>
  15. </div>
  16. );
  17. }
  18. }
Add Comment
Please, Sign In to add comment