Use Immer with useState Hook

PHOTO EMBED

Fri Jan 06 2023 12:10:16 GMT+0000 (Coordinated Universal Time)

Saved by @Floony

const handleOnSubmit = (e) => {
    e.preventDefault();
    setList(
      produce((draft) => {
        draft.push({
          id: Math.floor(Math.random() * 100),
          title: name,
        });
      })
    );
  };
content_copyCOPY

https://dev.to/franciscomendes10866/use-immer-to-better-handle-the-state-of-your-react-app-489p