-
-
Notifications
You must be signed in to change notification settings - Fork 61
Closed
Labels
Description
There are some problems with the react jsx
The following code
import React from "react";
import ReactDOM from "react-dom";
let el = (
<div>
<h1>hello</h1>
<label htmlFor="username">username</label>
<input type="text" id="username"/>
</div>
);
ReactDOM.render(el, window.root);Reactions are currently unavailable