error.modify-state.js8 lines
mainRaw
import {useState} from 'react';

function Foo() {
  let [state, setState] = useState({});
  state.foo = 1;
  return state;
}
Loading syntax highlighting…