what counts as calling a hook reactjs code example
Example 1: react hooks
const [state, setState] = useState(initialState);
Example 2: how to use hooks react
const App = () => {
const [students , setStudents] = useState([]);
return (
// put in the jsx code here
)
}