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