Let's the user pick more than one date from the date picker.
After looking at various date picking libraries out there I couldn't find a single one who lets users pick more than one date without enforcing a range, so I decided to write one myself.
yarn add react-multiple-datepicker
import MultipleDatePicker from 'react-multiple-datepicker'
render() {
<MultipleDatePicker
onSubmit={dates => console.log('selected date', dates)}
/>
}
- Make it responsive
- Support for
onDateSelect
prop. - Add test cases
Hi, thanks for checking out this library. You can read more about me at https://bilalbudhani.com/about or you can follow me at https://twitter.com/BilalBudhani