Skip to content

Instantly share code, notes, and snippets.

@tylermcginnis
Created April 9, 2018 05:55
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save tylermcginnis/36bef882bfc1b939b700ea87efa62db6 to your computer and use it in GitHub Desktop.
Save tylermcginnis/36bef882bfc1b939b700ea87efa62db6 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>React</title>
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
</head>
<body>
<div id='app'></div>
<script>
const name = 'Tyler'
const handle = '@tylermcginnis'
const nameElement = React.createElement(
'h1',
null,
name
)
const handleElement = React.createElement(
'h3',
null,
handle
)
const wrapperElement = React.createElement(
'div',
{ id: 'container' },
nameElement,
handleElement
)
console.log('wrapperElement', wrapperElement)
ReactDOM.render(
wrapperElement,
document.getElementById('app')
)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment