1.3.5 • Published 5 years ago
react-simple-date-range v1.3.5
React Simple Date Range
A fast, modern and highly customizable Date range picker for React. Integrates seamlessly React Hook form and can be styled using your favourite css framework like tailwindcss.
import { useState } from 'react';
import { DateRangePicker, DateRange } from 'react-simple-date-range';
const RangeExample = () => {
const [range, setRange] = useState({
start: null,
end: null,
} as DateRange);
return (
<DateRangePicker
value={range}
onChange={(newRange) => setRange(() => newRange)}
></DateRangePicker>
);
};
export default RangeExample;Features
- Effortless form integration
- Customizable cells
- Full control over disabled dates, with custom options
- Written in Typescript
Documentation
The documentation is currently being worked on, if you have any issues please visit the issues section on github.
Contributing
Feel free to submit a PR on Github
1.3.5
5 years ago
1.3.4
5 years ago
1.3.3
5 years ago
1.3.2
5 years ago
1.3.1
5 years ago
1.3.0
5 years ago
1.2.1
5 years ago
1.2.0
5 years ago
1.1.10
5 years ago
1.1.9
5 years ago
1.1.8
5 years ago
1.1.7
5 years ago
1.1.6
5 years ago
1.1.5
5 years ago
1.1.4
5 years ago
1.1.3
5 years ago
1.1.2
5 years ago
1.1.1
5 years ago
1.1.0
5 years ago
1.0.7
5 years ago
1.0.6
5 years ago
1.0.5
5 years ago
1.0.4
5 years ago
1.0.3
5 years ago
1.0.2
5 years ago
1.0.1
5 years ago
1.0.0
5 years ago