17 lines
306 B
TypeScript
17 lines
306 B
TypeScript
import { Routes, Route } from 'react-router-dom'
|
|
import MainPage from './pages/MainPage.tsx'
|
|
import Header from './components/Header.tsx'
|
|
|
|
function App() {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<Routes>
|
|
<Route path="/" element={<MainPage />} />
|
|
</Routes>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default App
|