<Tabs>
component:
Property | Type | Default | Required | Description |
---|---|---|---|---|
className | String | n/a | no | class needed to style
|
headerClass | String | n/a | no | class needed to style tabs |
activePanelClass | String | n/a | no | style needed to style active |
<Panel>
component:
Property | Type | Default | Required | Description |
---|---|---|---|---|
title | string | n/a | yes | tabs header title |
<Tabs activePanelClass="active"
headerClass="block-head"
className="nav-tab">
<Panel title='description'>
<div className="block-inner">
<p> react is awsome !</p>
</div>
</Panel>
<Panel title='alternatives'>
<div className="block-inner">
<p> nothing !</p>
</div>
</Panel>
</Tabs>