React Nepali Datepicker
Integrate Nepali Datepicker in your React app easily.
Installation
- Install by executing
npm i nepali-datepicker-react
oryarn add nepali-datepicker-react
. - Import by adding
import { NepaliDatePicker } from 'nepali-datepicker-react'
.
Demo Link
https://codesandbox.io/s/nepali-date-picker-0f3d1
Props
Common props you may want to specify include:
className
- apply a className to the controlclassNameInput
- apply classNames to input fieldname
- generate an HTML input with this name, containing the current valueonChange
- change eventsplaceholder
- change the text displayed when no date is definedvalue
- control the current valueformat
- change the date format i.e.('YYYY-MM-DD' && 'YYYY/MM/DD') only
Usage
Here's an example of basic usage:
;; const now = ; { const date setDate = ; const handleDate = { ; console; } return <NepaliDatePicker value=date format="YYYY-MM-DD" onChange=handleDate /> ;}