20 lines
502 B
React
20 lines
502 B
React
import React from "react";
|
|
import { Route, Routes } from "react-router-dom";
|
|
import Home from "./pages/home";
|
|
import Login from "./pages/login";
|
|
import About from "./pages/about";
|
|
import Header from "./components/header";
|
|
|
|
const App = () => (
|
|
<div style={{ textAlign: "center" }}>
|
|
<Header />
|
|
<Routes>
|
|
<Route path="/" element={<Home />} />
|
|
<Route path="/login" element={<Login />} />
|
|
<Route path="/about" element={<About />} />
|
|
</Routes>
|
|
</div>
|
|
);
|
|
|
|
export default App;
|