What is React Events ?

React Events work similar to HTML Events based upon user Events React follows the same event of HTML events like click change mouseover etc What is the Syntax of React Events ? React has camelCase Syntax onClick for HTML onclick simliar syntax we use React events are written in curly braces Example: onClick={name} and in … Read more

React Components

React provides Components which behave like function but return HTML tags by render() function. React provides two types of components one is Class types Component and another is function like component React Class Component React Class Component name must start with uppercase and it should extends React.Component making Class Component Example Display name Component React … Read more