Does not work with React 17
geocolumbus opened this issue · 2 comments
geocolumbus commented
This statement in package.json protects you from using a version of React lower than 16.3, but it also prevents you from using 17.
"peerDependencies": {
"react": "^16.3.x"
},
geocolumbus commented
This issue popped up with npm version 7. You can force install it with React 17 or greater by using the --legacy-peer-deps flag. But I still think this should be fixed because this does seem to work with React 17.
ivanzcai commented
hopefully this will get updated for react 18 too.