empuje-method-in-react-ghooks-usestate
const [theArray, setTheArray] = useState(initialArray);
setTheArray(theArray => [...theArray, newElement]);
Lovely Locust
const [theArray, setTheArray] = useState(initialArray);
setTheArray(theArray => [...theArray, newElement]);