Created
January 28, 2021 08:00
-
-
Save decpk/fccbd15714b25fe4f429449500f51e82 to your computer and use it in GitHub Desktop.
Functional component
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 React from 'react'; | |
| import ReactDOM from 'react-dom'; | |
| import ButtonComponent from './components/ButtonComponent'; | |
| ReactDOM.render( | |
| <ButtonComponent buttonName="Search" padding="1rem 1.25rem" />, | |
| document.querySelector( "#root" ) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment