how to push an object into an array javascript inside useState setter code example
Example 1: React Hooks append state
setTheArray(currentArray => [...currentArray, newElement])
Example 2: usestate array push
setTheArray([...theArray, newElement]);