switch case button react code example
Example 1: switch in react
renderSwitch(param) {
switch(param) {
case 'foo':
return 'bar';
default:
return 'foo';
}
}
render() {
return (
<div>
<div>
</div>
{this.renderSwitch(param)}
<div>
</div>
</div>
);
}
Example 2: Switch Button in react
> npm i bootstrap-switch-button-react --save
import BootstrapSwitchButton from 'bootstrap-switch-button-react'
<BootstrapSwitchButton
onlabel='Hide'
onstyle='danger'
offlabel='Show'
offstyle='success'
style="border"
width={80}
onChange={() => {
handleReload()
}} />
<label> Show Hide Switch Button </label>