Skip to content

Commit

Permalink
Update App.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ASquare04 authored Jul 3, 2024
1 parent 0a8c65b commit fbbd5bc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@ import React from 'react';
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';

import Homepage from './pages/Homepage';
import Aboutpage from './pages/Aboutpage';


const App = () => {
return (
<Router>
<Routes>
<Route path="/" element={<Homepage />} />
<Route path="/about" element={<Aboutpage />} />
</Routes>
</Router>
);
Expand Down

0 comments on commit fbbd5bc

Please sign in to comment.