Skip to content
Advertisement

Typescript Error using react-daterange-picker “No overload matches this call.”

When I try to use react-daterange-picker in my React Typescript app, I get the error

JavaScript

My code is based on the official example in the package repo.

Why is there a Typescript error here, and how can we fix it?

React Typescript code:

JavaScript

Advertisement

Answer

Well the one line you changed from the example was the import.

JavaScript

This line does not import the module you linked to in your question. That imports react-daterange-picker, but you linked to @wojtekmaj/react-daterange-picker. Those are two completely different modules.

Instead install @wojtekmaj/react-daterange-picker and it’s types package @types/wojtekmaj__react-datetimerange-picker. Then it should work like you expect.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement