Unable to install with react's latest version react ^17.0.2
shivamsahni opened this issue · 1 comments
shivamsahni commented
When I am trying to install using following command:
npm i react-use-form-state
It gives following error:
Found: react@17.0.2
npm ERR! node_modules/react
npm ERR! react@"^17.0.2" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^16.8.0" from react-use-form-state@0.13.2
npm ERR! node_modules/react-use-form-state
rijk commented
From NPM v8, you can fix this by overriding in package.json:
"overrides": {
"react-use-form-state": {
"react": "*",
"react-dom": "*"
}
},