import { Route, Routes } from 'react-router-dom' import IndexPage from './pages/index' import AboutPage from './pages/about' function App() { return ( } path="/" /> } path="/about" /> ) } export default App