Anyone know why jsfiddle is giving me this error when testing jsx.
unclosed regular expression
https://jsfiddle.net/chapster11/LzdfLy53/
const combobox = () => (
<div id="box">
working
</div>
);
ReactDOM.render(<combobox />, document.querySelector("#app"));
-