useCookie
useCookie copied to clipboard
Remove React from dependencies
as discussed here: https://stackoverflow.com/questions/30451556/what-is-the-correct-way-of-adding-a-dependency-to-react-in-your-package-json-for
React should not be a dependency since you might end up shipping different versions of react. If you need React when testing the package, it should be a devDependency. Right?