0
Q:

components react to hooks

const App = () => {
const [students , setStudents] = useState([]);
  
  return (
// put in the jsx code here
  )
}
0
import React, { useState } from 'react';
function Example() {
  // Declare a new state variable, which we'll call "count"  const [count, setCount] = useState(0);
  return (
    <div>
      <p>You clicked {count} times</p>
      <button onClick={() => setCount(count + 1)}>
        Click me
      </button>
    </div>
  );
}
-1

New to Communities?

Join the community