В файле TSX: свойство 'createRef' не существует для типа 'typeof React'
Мне нужна ссылка на компонент. Просто перешел с jsx на tsx и не могу найти решение этой проблемы.
Другим обходным решением будет использование селектора запросов, но я считаю, что это не очень хороший способ сделать что-то в ответ.
Вот функция конструктора
constructor(props) {
super(props);
this.state = {
data: initialData,
showNewListForm: false,
whichButtonClicked: undefined,
background: props.background || "#23719f"
};
this.divContainerRef = React.createRef();
console.log("kanban reference : " + React.createRef().current);
this.handleDragStart = this.handleDragStart.bind(this);
this.handleDragEnd = this.handleDragEnd.bind(this);
this.handleLaneDragEnd = this.handleLaneDragEnd.bind(this);
this.handleLaneDragStart = this.handleLaneDragStart.bind(this);
this.onCardAdd = this.onCardAdd.bind(this);
this.onCardClick = this.onCardClick.bind(this);
this.addNewListHandler = this.addNewListHandler.bind(this);
this.containerRefResolver = this.containerRefResolver.bind(this);
this.isBoardPresent = this.isBoardPresent.bind(this);
}
1 ответ
Решение
Похоже, у вас есть устаревшая версия @types/react
, Последняя версия 16.3.14
имеет определения типа для createRef
,
В моей кодовой базе Typescript мне пришлось обновить типы реагировать:
yarn upgrade @types/react-dom^16.3.0