can we update the react dependencies in the package.json to remove these warnings?
warning " > react-resource-router@0.20.0" has incorrect peer dependency "react@^16.8.0".
warning " > react-resource-router@0.20.0" has incorrect peer dependency "react-dom@^16.8.0".
for context, our project is on react 17. would we be able to add
"peerDependencies": {
"react": "^16.8 || ^17.0",
"react-dom": "^16.8 || ^17.0",
},
can we update the react dependencies in the package.json to remove these warnings?
warning " > react-resource-router@0.20.0" has incorrect peer dependency "react@^16.8.0".
warning " > react-resource-router@0.20.0" has incorrect peer dependency "react-dom@^16.8.0".
for context, our project is on react 17. would we be able to add