Skip to content

Instantly share code, notes, and snippets.

@zeakd
Created September 25, 2016 09:17
Show Gist options
  • Save zeakd/a89c60b541d92e12bec728809bd25751 to your computer and use it in GitHub Desktop.
Save zeakd/a89c60b541d92e12bec728809bd25751 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>like react1</title>
</head>
<body>
<div id="root"></div>
<script>
function render(elem, root) {
root.appendChild(elem);
}
var h1 = document.createElement('h1');
h1.className = 'title'
h1.innerHTML = 'hello';
render(
h1,
document.getElementById('root')
)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment