React playground
by cbrwizard
HTML
<script src="https://unpkg.com/[email protected]/umd/react.development.js"></script>
<script src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script>
<div id="root">
</div>
Babel + JSX
const App = () => {
return <p>Text</p>
}
ReactDOM.render(<App />, document.getElementById('root'))