Skip to content

Instantly share code, notes, and snippets.

@MacgyverMartins
Created August 9, 2018 15:54
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 MacgyverMartins/e9bd8d6e2cf2a766641e1f64693f5896 to your computer and use it in GitHub Desktop.
Save MacgyverMartins/e9bd8d6e2cf2a766641e1f64693f5896 to your computer and use it in GitHub Desktop.
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