Warning: Unknown DOM property data-className. Did you mean data-classname? so we'll have to lower-case the keys.
Warning: Don't set .props.data-className of the React component <div />. Instead, specify the correct value when initially creating the element or use React.cloneElement to make a new element with updated props. The element was created by ... We can't modify this.props so we'll have to clone it.
@3den Couple of warnings I got:
Warning: Unknown DOM property data-className. Did you mean data-classname?
so we'll have to lower-case the keys.Warning: Don't set .props.data-className of the React component <div />. Instead, specify the correct value when initially creating the element or use React.cloneElement to make a new element with updated props. The element was created by ...
We can't modifythis.props
so we'll have to clone it.