Installation


You can install the React Select component via npm:

npm i @zener/nepali-datepicker-react

Usage


First you need to include React select's css file in your project as below.

import "@zener/nepali-datepicker-react/index.css";

Basic Implementation

import NepaliDatePicker from '@zener/nepali-datepicker-react';
import '@zener/nepali-datepicker-react/index.css';

const App = () => {
  const [value, setValue] = useState()
  return (
    <NepaliDatePicker
      value={value}
      onChange={(e) => {
        setValue(e);
      }}
      placeholder="Select date"
    />
  );
};