Skip to content

Instantly share code, notes, and snippets.

@bengrunfeld
Created March 25, 2021 15:56
Show Gist options
  • Save bengrunfeld/e945deda2bf0393d308ccd072b33bbbb to your computer and use it in GitHub Desktop.
Save bengrunfeld/e945deda2bf0393d308ccd072b33bbbb to your computer and use it in GitHub Desktop.
Styled Components Usage in JSX
import {
PageWrapper,
InvestorForm,
InvetorInput,
AddInvestorButton,
ClearFormButton,
NextPageButton
} from './Page.styles.js'
const Page = () => (
<PageWrapper>
<InvestorForm>
<InvestorInput />
<AddInvestorButton>Add Investor</AddInvestorButton>
</InvestorForm>
<ClearFormButton>Clear form</ClearFormButton
<NextPageButton>Next</NextPageButton>
</PageWrapper>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment