Skip to content

Instantly share code, notes, and snippets.

@bengrunfeld
Created March 25, 2021 15:55
Show Gist options
  • Save bengrunfeld/ae33cabeaea5c55d4adabdf8270166a8 to your computer and use it in GitHub Desktop.
Save bengrunfeld/ae33cabeaea5c55d4adabdf8270166a8 to your computer and use it in GitHub Desktop.
Styled Components
import styled from 'styled-components'
export const PageWrapper = styled.div`
display: flex;
`
export const InvestorForm = styled.div`
width: 90%;
`
export const AddInvestorButton = styled.button`
background: green;
`
export const ClearFormButton = styled.button`
background: red;
`
export const NextPageButton = styled.button`
background: blue;
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment