Created
March 25, 2021 15:55
-
-
Save bengrunfeld/ae33cabeaea5c55d4adabdf8270166a8 to your computer and use it in GitHub Desktop.
Styled Components
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 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