I have this code in my react return statement with "react-bootstrap": "^0.32.1"
var Tabs = require('react-bootstrap/lib/Tabs');
var Tab = require('react-bootstrap/lib/Tab');
.....
return (
<Tabs placement='right' >
<Tab ref="target1" eventKey={1} title="Tab 1">
</Tab>
<Tab target="target1" placement="bottom" eventKey={2} title="Tab 2">
Tab 2 content
</Tab>
</Tabs>
);
I'm trying to follow this guide in the docs: https://react-bootstrap.github.io/react-overlays/#position
The tabs appear on the left even though I have it marked right, and I can't get them to go top bottom. I must be missing a guide somewhere.
Any Ideas?