Created
December 3, 2016 19:15
-
-
Save guzmonne/a0d64561a549d2ec0337e4027bcff5cb to your computer and use it in GitHub Desktop.
Simple application layout component
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 from 'react'; | |
| class App extends React.Component { | |
| render() { | |
| return ( | |
| <div className="App"> | |
| <div className="header"></div> | |
| <div className="body"> | |
| <div className="content"></div> | |
| <div className="sidebar"></div> | |
| </div> | |
| <div className="footer"></div> | |
| </div> | |
| ); | |
| } | |
| } | |
| export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment