Please Solve this Issue in react js Project
I am running project in local.
Please Solve this Issue in react js Project
I am running project in local.
Looks like the react-router-dom version you're using doesn't have that export anymore:
Attempted import error: 'Switch' is not exported from 'react-router-dom'
You can either downgrade react-router-dom to a lower version in your package.json by running the following commands:
npm uninstall react-router-dom
npm install react-router-dom@5.2.0
or by migrating to the new API (see this answer)