Created
March 6, 2020 21:32
-
-
Save ericmasiello/86f1bb6724594156ca010cad21cb6262 to your computer and use it in GitHub Desktop.
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 Title from './Title'; | |
function Demo() { | |
return( | |
<section> | |
<Title>Demo</Title> | |
</section> | |
); | |
} | |
ReactDOM.render(<Demo />, document.querySelector('#main')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment