adrianhajdin / project_cryptoverse

Cryptocurrency App powered by RapidAPI
https://jsmastery.pro
1.32k stars 399 forks source link

React-router-dom needs to be updated #97

Open pritipsingh opened 1 year ago

pritipsingh commented 1 year ago

Switch and other methods have been deprecated. They no longer support it. It needs to be updated with - Routes

pritipsingh commented 1 year ago

If possible can I work on this issue?

zainytech commented 7 months ago

you can use Routes instead of using Switch in react-router-dom package. you can have an example as

<BrowserRouter>
<Routes>
<Route path="/" element={<Home />} />
</Routes>
</BrowserRouter>