JSFiddle - React, Tailwind, and code Playground

by Rishabh Sharma

JavaScript

function React() {
}
React.prototype.createElement = function createElement(elem, attrs, children) {
	var elem = document.createElement(elem);
  elem.appendChild(document.createTextNode('Hello World!'));
  document.querySelector('body').appendChild(elem);
}