LIFTING STATE REACT

PHOTO EMBED

Fri Jan 19 2024 05:49:43 GMT+0000 (Coordinated Universal Time)

Saved by @Marcelluki

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>
  );
} 
content_copyCOPY

https://tripleten.com/trainer/web/lesson/939f5e38-00bf-401b-bc2e-0974cbb6d05c/