Skip to content

Instantly share code, notes, and snippets.

@ericmasiello
Created March 6, 2020 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericmasiello/86f1bb6724594156ca010cad21cb6262 to your computer and use it in GitHub Desktop.
Save ericmasiello/86f1bb6724594156ca010cad21cb6262 to your computer and use it in GitHub Desktop.
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