Skip to content

Instantly share code, notes, and snippets.

@guzmonne
Created December 3, 2016 19:15
Show Gist options
  • Select an option

  • Save guzmonne/a0d64561a549d2ec0337e4027bcff5cb to your computer and use it in GitHub Desktop.

Select an option

Save guzmonne/a0d64561a549d2ec0337e4027bcff5cb to your computer and use it in GitHub Desktop.
Simple application layout component
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