can you pls implement:
https://v4-alpha.getbootstrap.com/components/buttons/#checkbox-and-radio-buttons
dup: #273
As mentioned there, this feature already exists. Because these components are stateful, it is considered outside the scope of this project.
Some documentation is needed to show how the existing components can be used to create what you are wanting to do.
To be clear, all you need to do is use <ButtonGroup>s with <Button>s and set the active props on the button which is selected. That last part is the key to it, but it is where state comes into play and this is not included.
Here is a basic demo of that using the current version of the project: http://www.webpackbin.com/EJKGaQo8z
@TheSharpieOne ps. your webpackbin is no longer there
@aminnaggar webpackbin did an update, here is a new example: https://stackblitz.com/edit/reactstrap-v5beta-zxdfeh?file=Example.js
Note it is just an example, you shouldn't use inline functions in prod for performance reasons.
Most helpful comment
dup: #273
As mentioned there, this feature already exists. Because these components are stateful, it is considered outside the scope of this project.
Some documentation is needed to show how the existing components can be used to create what you are wanting to do.
To be clear, all you need to do is use
<ButtonGroup>s with<Button>s and set theactiveprops on the button which is selected. That last part is the key to it, but it is where state comes into play and this is not included.Here is a basic demo of that using the current version of the project: http://www.webpackbin.com/EJKGaQo8z