shahabyazdi / react-multi-date-picker

a simple React datepicker component for working with gregorian, persian, arabic and indian calendars
https://shahabyazdi.github.io/react-multi-date-picker/
MIT License
839 stars 102 forks source link

Date Picker Not Showing While Click #324

Open Vigneshwaran-crypto opened 1 month ago

Vigneshwaran-crypto commented 1 month ago
   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 />]}
        />``
dadang-hawari commented 1 month ago

maybe you could remove the backticks in your last code
/>``