npm-пакет c компонентом, даёт ошибку
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
See https://fb.me/react-invalid-hook-call for tips about how to debug and fix this problem.
1. версии реакта совпадают (16.13.1)
2. Использую хук внутри функции
const MyComponent = ({ status }) => {
const processing = useMemo(() => {
const res = ["new", "pending"].includes(status) ? 'processing' : 'stopped';
return res;
}, [status]);
return <h1>Hello from My Component: {processing}</h1>;
};
транспилированный вариант:
var MyComponent = function MyComponent(_ref) {
var status = _ref.status;
var processing = (0, _react.useMemo)(function () {
var res = ["new", "pending"].includes(status) ? 'processing' : 'stopped';
return res;
}, [status]);
return _react2.default.createElement(
"h1",
null,
"Hello from My Component: ",
processing
);
};
3. я добавляю react в peerDependencies, в транспилированном скрипте выглядит так:
var _react = require("react");
var _react2 = _interopRequireDefault(_react);
Такое бывает когда у тебя 2 версии реакта в бандле
могу отправить бандл. В упор не вижу этого
Посмотри в node_modules этого пакета, там точно нет еще реакта?
ты оказался прав. Дело было в том, что у меня в package.json пакета был реакт в peerDependencies и в devDependencies
Обсуждают сегодня