we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "write button hover in react"
Willam
12 Apr 2016
1var Category = React.createClass({displayName: 'Category',
2  render: function () {
3      return (
4        React.createElement("div", {className: "row"}, 
5        React.createElement("button", null, "Search",   {OnMouseEnter://I have no idea until here})
6      )
7    );
8  }
9});
10
11React.render(React.createElement(Category), contain);
12