Skip to content

Instantly share code, notes, and snippets.

@drenther
Created June 24, 2018 18:52
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 drenther/18cd88baedc4b9e64edfb540d95b638a to your computer and use it in GitHub Desktop.
Save drenther/18cd88baedc4b9e64edfb540d95b638a to your computer and use it in GitHub Desktop.
Main.js of the style-components-tutorial
import styled from 'styled-components';
const Main = styled.div`
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
justify-content: center;
align-content: flex-start;
`;
export default Main;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment