Skip to content

Instantly share code, notes, and snippets.

@christiannwamba
Created May 30, 2018 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christiannwamba/f75f86f0388358ea6d60f7a0707944d1 to your computer and use it in GitHub Desktop.
Save christiannwamba/f75f86f0388358ea6d60f7a0707944d1 to your computer and use it in GitHub Desktop.
// App.js
import React, { Component } from 'react';
import styled from 'styled-components';
import Hamburger from './Hamburger';
const Wrapper = styled.div`
width: 100vw;
height: 100vh;
`;
class App extends Component {
render() {
return (
<Wrapper>
<Hamburger />
</Wrapper>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment