Reputation: 11
I know that this question is repeated but I can't solve the issue with any of the published answers.
I'm getting the error below... and I don't see any issue in the code
./src/containers/navBarContainer/NavBarContainer.js
Module not found: Can't resolve '.../components/navBar/NavBar' in 'C:\Users\acanonicco001\Documents\CoderHouse\rjs\desafios-coder\src\containers\navBarContainer'
Upvotes: 0
Views: 483
Reputation: 2102
You almost certainly meant to put ../
instead of .../
.
../
indicates moving one folder up. I don't know that .../
actually has a defined meaning.
Upvotes: 3