Skip to content

Instantly share code, notes, and snippets.

@tjinauyeung
Created February 29, 2016 11:21
Show Gist options
  • Save tjinauyeung/84166ade8a3bda3f1b2c to your computer and use it in GitHub Desktop.
Save tjinauyeung/84166ade8a3bda3f1b2c to your computer and use it in GitHub Desktop.
import React from 'react';
import BuildingList from './BuildingList';
class Brutal extends React.Component {
render() {
return(
<div>
<nav>
<p>Here comes the nav component</p>
</nav>
<header>
<h1>Welcome to Brutal.</h1>
</header>
<BuildingList />
<footer>
<p>Here comes the footer component</p>
</footer>
</div>
);
}
}
export default Brutal;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment