react-simpletabs
react-simpletabs copied to clipboard
Incombatible with React 0.14+ ! this.props.children must not be manipulated!
the component does not work with react 0.14+, because "this.props.children" is trying to be changed.
+1
react(0.14.7) and when there is only one Tabs.Panel
<Tabs>
<Tabs.Panel title='Tab #1'>
<h2>Content #1 here</h2>
</Tabs.Panel>
</Tabs>
error:
Uncaught TypeError: Cannot assign to read only property 'children' of object '#<Object>'
in _getMenuItems :
if (!Array.isArray(this.props.children)) {
this.props.children = [this.props.children];
}
I am also facing same error as above. Any solution for this?
I'm facing the same problem. Any news about it?