We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've been trying to implement the DateRangePicker with no success.
I am using NextJS app router v:^13.4.8 Here is the code:
import DateRangePicker from "flowbite-datepicker/DateRangePicker"; const datepickerRef = useRef(); useEffect(() => { if (datepickerRef?.current) { new DateRangePicker(datepickerRef.current, {}); } }, []); return ( <input ref={datepickerRef} type="text" placeholder="Select date" /> )
Note: The original DatePicker works just fine using the same method.
The text was updated successfully, but these errors were encountered:
Same issue can be seen here in this example https://codesandbox.io/s/flowbite-react-datepicker-forked-yhdv6p?file=/src/App.js
Sorry, something went wrong.
https://vue-tailwind-datepicker.com/advanced-features.html
No branches or pull requests
I've been trying to implement the DateRangePicker with no success.
I am using NextJS app router v:^13.4.8
Here is the code:
Note: The original DatePicker works just fine using the same method.
The text was updated successfully, but these errors were encountered: