Props
themeClassKey String
Key assigned to the object specified in the theme settings.
default: 'tabs'
activeTab Number
Index of the active tab.
default: 1
Using Tabs
NOTICE: Required check the structure of the content of the tabs.
The basic structure is defined as the code below.
var CustomTab = React.createClass({
render: function() {
return
<Tabs {...this.props}>
<Tab>
Custom tab 1
</Tab>
<Tab>
Custom tab 2
</Tab>
</Tabs>;
}
});