JSFiddle - React, Tailwind, and code Playground

by Ming Huang

HTML

<input type='radio' name='name' value='ming'/> ming
<input type='radio' name='name' value='joe'/> joe
<input type='radio' name='name' value='john'/> john

<select>
  <option>a</option>
  <option>b</option>
  <option>c</option>
</select>

React

class Boba extends React.Component{
	render(){
  	return (
    	<div>
    	  My React
    	</div>
    )
  }
}