7. Full React Tutorial #7 - Click Events

CSS and Inline

"

01

Basic eventlistener function, pass in to onClick attribute with {}

const Home = () => {
  const handleClick = () => {
      console.log('hey whatup')
  }
  return ( 
     <div className="home">
         <h1>Homepage</h1>
         <button onClick={handleClick}>Click me</button>
     </div>
  );
}
 
export default Home;