Hi team, was trying to follow this tutoria but keep running into the issue of not being able to fire up this in the browser. I keep getting the error: 'Module not found: Can’t resolve ‘@openzeppelin/network/react’ in ‘/Users/rghadamian/web3/web3-infura/client/src’
Hello, I only just realized it was you when I clicked on your profile picture. Great to see you in the forum.
It looks like ln -s ./lib/react ./react failed to run as part of the preinstall for OpenZeppelin Network.js.
As a work around if you replace in your App.js the line: import { useWeb3 } from '@openzeppelin/network/react';
with the following: import { useWeb3 } from '@openzeppelin/network/lib/react';
You should then be able to run the dapp.
You could also try running ln -s ./lib/react ./react in your project root directory. This is an issue on Windows (which is why I asked what operating system you were using).