I'm using react-bootstrap from this site : http://react-bootstrap.github.io/components.html
And I would like to know how to custom a tabs like this one (in the tabs section):
const tabsInstance = (
<Tabs defaultActiveKey={2}>
<Tab eventKey={1} title="Tab 1">Tab 1 content</Tab>
<Tab eventKey={2} title="Tab 2">Tab 2 content</Tab>
<Tab eventKey={3} title="Tab 3" disabled>Tab 3 content</Tab>
</Tabs>
);
ReactDOM.render(tabsInstance, mountNode);
I want to add a cross button to close it but I didn't find how to do that. Can you help me please ?