Created
November 4, 2018 20:58
-
-
Save tsamaya/4f6f88e472820e20076d85cc0950c90f 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 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