Languages
[Edit]
EN

React - onClick example

3 points
Created by:
jarlh
635

In this article, we would like to show you how to use onClick event in React.

Quick solution:

<button onClick={handleClick}>Click me</button>

Practical example

In below example, we pass external handleClick arrow function to the button's onClick property that handles mouse click event.

Runnable example:

// ONLINE-RUNNER:browser;

// Note: Uncomment import lines while working with JSX Compiler.
// import React from 'react';
   
const handleClick = () => {
  console.log('handleClick catched');
};

const App = () => {
  return (
    <div className="App">
      <button onClick={handleClick}>Click me</button>
    </div>
  );
};

const root = document.querySelector('#root');
ReactDOM.render(<App />, root );

Note:
If you want the solution with class component read this article.

Alternative titles

  1. React - onClick example in functional component
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

ReactJS - events

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join