Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Last active October 3, 2018 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save productioncoder/379c9d9bb11719512dca97c7041cd8c8 to your computer and use it in GitHub Desktop.
Save productioncoder/379c9d9bb11719512dca97c7041cd8c8 to your computer and use it in GitHub Desktop.
Hide divider in VideoGrid component
import React from 'react';
import './Home.scss';
import {VideoGrid} from '../../components/VideoGrid/VideoGrid';
export class Home extends React.Component {
render() {
return (
<div className='home'>
<VideoGrid title='Trending'/>
<VideoGrid title='Autos & Vehicles' hideDivider={true}/>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment