Package Exports
- react-bootstrap-range-slider
- react-bootstrap-range-slider/dist/react-bootstrap-range-slider.css
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-bootstrap-range-slider) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Bootstrap Range Slider
New!
Installation
npm install react-bootstrap-range-slideror
yarn add react-bootstrap-range-sliderUsage
import React, { useState } from 'react';
import 'react-bootstrap-range-slider/dist/react-bootstrap-range-slider.css';
import ReactBootstrapRangeSlider from 'react-bootstrap-range-slider';
const [ value, setValue ] = useState(0);
<ReactBootstrapRangeSlider
value={value}
onChange={changeEvent => setValue(changeEvent.target.value)}
/>