import React from 'react'; import './App.css'; import { Hello, Welcome } from './components/Welcome'; import { BrowserRouter as Router, Switch, Route, Link } from "react-router-dom"; function App() { return (
{/* A looks through its children s and renders the first one that matches the current URL. */}
); } export default App;