Хочу заюзать календарик с тапйпскриптом, но получаю ошибку, если навести на
setDateRange(update);
ошибка следующая
Argument of type '[Date | null, Date | null]' is not assignable to parameter of type 'SetStateAction<null[]>'.
Type '[Date | null, Date | null]' is not assignable to type 'null[]'.
Type 'Date | null' is not assignable to type 'null'.
Type 'Date' is not assignable to type 'null'
() => {
const [dateRange, setDateRange] = useState([null, null]);
const [startDate, endDate] = dateRange;
return (
<DatePicker
selectsRange={true}
startDate={startDate}
endDate={endDate}
onChange={(update) => {
setDateRange(update);
}}
isClearable={true}
/>
);
};
Как это типизировать?