You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning: Don't set .props.onClick of the React component <input />. Instead, specify the correct value when initially creating the element. The element was created by TodoItem.
Reason
If you are on React.js v0.13, you might see this warning, since upon 0.13, props will be immutable.
Reason
If you are on React.js v0.13, you might see this warning, since upon 0.13, props will be immutable.
Solution
To make the syntax
on(:event_name)
still work. We will shift toReact.cloneElement
(https://facebook.github.io/react/docs/top-level-api.html#react.cloneelement).The text was updated successfully, but these errors were encountered: