Created
August 9, 2018 15:54
-
-
Save MacgyverMartins/e9bd8d6e2cf2a766641e1f64693f5896 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import MainFilterCont from '../containers/MainFilter.container'; | |
import Header from '../components/Header'; | |
class HomePage extends Component { | |
render() { | |
return ( | |
<section className="home-page"> | |
<div className="nice-classname"> | |
<h1>Macgyver</h1> | |
</div> | |
<Header /> | |
<MainFilterCont /> | |
</section> | |
); | |
} | |
} | |
export default HomePage; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment