Я новичок в react-redux
. У меня есть этот код, я использую react
, redux
и TypeScript
. В этом коде используется компонент, основанный на классе, и я хочу использовать dispatch для вызова действия для увеличения значения counter
, но это дает мне следующую ошибку.
Error: Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
1. You might have mismatching versions of React and the renderer (such as React DOM)
2. You might be breaking the Rules of Hooks
3. You might have more than one copy of React in the same app
Вот мой код компонента, основанный на классе :
import React from 'react';
import { connect, useDispatch } from 'react-redux';
import { Dispatch } from 'redux';
import { increment, decrement } from '../actions/counterAction';
interface IHome {
counter: 0
}
class Home extends React.Component<IHome> {
render() {
const dispatch = useDispatch();
return (
<div>
This is the home page {this.props.counter}
<button onClick={()=>dispatch(increment)}>+</button>
<button>-</button>
</div>
);
}
}
const mapStateToProps = (state: IHome) => {
return {
counter: state.counter
}
}
const mapDispatchToProps = (dispatch: Dispatch) => {
return {
increment: () => dispatch(increment()),
decrement: () => dispatch(decrement())
}
}
export default connect(mapStateToProps, mapDispatchToProps)(Home);
Я не знаю, в чем проблема.