Hi Team,
I am getting below error when using TabStripTab inside TabStrip component.
<div>
<TabStrip
selected={this.state.selected}
onSelect={this.handleSelect}
tabPosition={this.state.position}>
<TabStripTab title="Tab 1">
This is test
</TabStripTab>
<TabStripTab title="Tab 2">
This is test2
</TabStripTab>
</TabStrip>
</div>
JSX element type 'TabStripTab' is not a constructor function for JSX elements.
The types returned by 'render()' are incompatible between these types.
Type 'ReactNode' is not assignable to type 'false | Element'.
Type 'string' is not assignable to type 'false | Element'.
I checked in the documentation and googled it also but do not find any specific solution for this.
Please let me know if aI am missing any thing here.
Regards,
Sanjay