function ThemeSelect() { const [theme, setTheme] = React.useState("day"); function handleChange(e) { setTheme(e.target.value); } return ( <select onChange={handleChange} className={theme}> <option value="day">Day</option> <option value="night">Night</option> </select> ); }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter