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