JSFiddle - React, Tailwind, and code Playground
by fillano
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<link rel="stylesheet" href="style.css">-->
<script src='https://cdnjs.cloudflare.com/ajax/libs/react/15.2.1/react.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/react/15.2.1/react-dom.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.34/browser.min.js'></script>
<title>Document</title>
</head>
<body>
<h1>React JS</h1>
<div id="msg">wait...</div>
<script type="text/babel" >
ReactDOM.render(
<h1>Hello, world!</h1>,
document.getElementById('msg')
);
</script>
</body>
</html>