react-multi-date-picker icon indicating copy to clipboard operation
react-multi-date-picker copied to clipboard

Date Picker Not Showing While Click

Open Vigneshwaran-crypto opened this issue 1 year ago • 1 comments

   import DatePicker, { DateObject } from "react-multi-date-picker";

   
   
   <DatePicker
          containerStyle={{
            display: "flex",
            flex: 1,
            width: "100%",
          }}
          range
          rangeHover
          format="MM/DD/YYYY"
          value={values}
          onChange={(val) => {
            console.log("chosen dates :", val);
            setValues(val);
          }}
          placeholder="From - To"
          dateSeparator=" - "
          plugins={[<DatePanel />]}
        />``

Vigneshwaran-crypto avatar Oct 22 '24 01:10 Vigneshwaran-crypto