usestate append this el code example
Example 1: usestate array push
setTheArray([...theArray, newElement]);
Example 2: how to use hooks react
const App = () => {
const [students , setStudents] = useState([]);
return (
// put in the jsx code here
)
}