In version 6 of the react-router-dom, the switch is replaced by a route. So what you have to do is to update the import from:
import { Switch, Route } from "react-router-dom";
To:
import { Routes ,Route } from 'react-router-dom';
After that make sure you update the Route declaration from:
<Route path="/" component={Home} />
To:
<Route path='/welcome' element={<Home/>} />
For more information: upgrade to react-router-dom v6.