@deepacks/react-date-picker
v0.2.17
Published
This is an easy to use date picker for react. Style customisation is in development.
Downloads
5
Maintainers
Readme
React-date-picker
This is an easy to use date picker for react. Style customisation is in development.
Installation
The package can be installed via npm:
npm install @deepacks/react-date-picker --save
Or via yarn:
yarn add @deepacks/react-date-picker
Configuration
The DatePicker requires a state containing the UTC string of the date (or an empty string) to work:
const [utcDateString, setUtcDateString] = useState("")
<DatePicker value={utcDateString} onChange={setUtcDateString} />