react hook usestate add to array code example
Example 1: add object to array react hook
setTheArray([...theArray, newElement]);
Example 2: add items to a react array in hooks
const addMessage = (newMessage) => setMessages(state => [newMessage, ...state])