Skip to content

Instantly share code, notes, and snippets.

@charlesfreeborn
Created March 6, 2018 04:39
Show Gist options
  • Save charlesfreeborn/7b719a06e489f8ad79235b6f2373146f to your computer and use it in GitHub Desktop.
Save charlesfreeborn/7b719a06e489f8ad79235b6f2373146f to your computer and use it in GitHub Desktop.
A simple example demonstrate JSX
const cleanCode = (
return(
<div>
<h1 className="headingGroup">This is a Heading</h1>
<p className="paragraphSection">This is a Paragraph</p>
</div>
)
)
ReactDOM.render(cleanCode, document.querySelector("#container"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment