When I try to use react-daterange-picker
in my React Typescript app, I get the error
JavaScript
x
16
16
1
No overload matches this call.
2
Overload 1 of 2, '(props: RangeProps<DateRangePicker> | SingleProps<DateRangePicker> | Readonly<RangeProps<DateRangePicker>> | Readonly<...>): DateRangePicker', gave the following error.
3
Type 'Date[]' is not assignable to type 'Moment | (MomentRange & typeof import("/Users/nyxynyx/test/node_modules/moment/ts3.1-typings/moment.d.ts")) | DateRange | undefined'.
4
Type 'Date[]' is missing the following properties from type 'Moment': format, startOf, endOf, add, and 80 more.
5
Overload 2 of 2, '(props: Props<DateRangePicker>, context: any): DateRangePicker', gave the following error.
6
Type 'Date[]' is not assignable to type 'Moment | (MomentRange & typeof import("/Users/nyxynyx/test/node_modules/moment/ts3.1-typings/moment.d.ts")) | DateRange | undefined'.
7
Type 'Date[]' is not assignable to type 'Moment'. TS2769
8
9
20 | <DateRangePicker
10
21 | onChange={onChange}
11
> 22 | value={value}
12
| ^
13
23 | />
14
24 | )
15
25 | }
16
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
1
15
15
1
import React, { useState } from 'react';
2
import DateRangePicker from 'react-daterange-picker';
3
4
export function Foo(): JSX.Element {
5
6
const [ value, onChange ] = useState([new Date(), new Date()]);
7
8
return (
9
<DateRangePicker
10
onChange={onChange}
11
value={value}
12
/>
13
)
14
}
15
Advertisement
Answer
Well the one line you changed from the example was the import.
JavaScript
1
2
1
import DateRangePicker from 'react-daterange-picker';
2
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.