Skip to content

Instantly share code, notes, and snippets.

@tsamaya
Created November 4, 2018 20:58
Show Gist options
  • Save tsamaya/4f6f88e472820e20076d85cc0950c90f to your computer and use it in GitHub Desktop.
Save tsamaya/4f6f88e472820e20076d85cc0950c90f to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import Header from './Header';
class App extends Component {
render() {
return (
<div>
<Header />
<div className="columns">
<div className="column">1</div>
<div className="column">2</div>
</div>
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment