Hello, welcome to therichpost.com. In this post, I will tell you, React js Onclick Event Handler Example. Reactjs is a Javascript Library to build user interface.
Today, In this post, I will tell you reactjs onclick event handler working and I will the li value with reactjs onclick event and this is very interesting.
react js uses fat arrow(() =>) with onclick function.
Here is the working for React js Onclick Event Handler Example and you can add this into your index.js file:
import React from 'react';
import ReactDOM from 'react-dom';
class Hello extends React.Component{
constructor()
{
super();
//declare custom data array of object
this.state = {
tasks:[
{name:'lession1', completeed:true},{name:'lession2', completeed:false}
]
}
}
render()
{
return (
<ul>
{
//map array data
this.state.tasks.map(function(task){
return <li key={task.name} onClick={() => alert(task.name)}>{task.name}</li>
})
}
</ul>
)
}
}
ReactDOM.render(<Hello />, document.getElementById('root'));
If you have any query related to this post then please do ask in below comment section and I will come with more post related to reactjs.