Skip to content

Commit

Permalink
solving conflict from merging main to matt branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Nesket authored Oct 22, 2023
1 parent d75f587 commit 1edf21d
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions Frontend/algoverse/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,16 @@ import { BrowserRouter as Router, Routes, Route } from "react-router-dom";

function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
<>
<Router>
<SearchBar />
<Routes>
<Route path="/" exact Component={Home} />
<Route path="/home" exact Component={Home} />
</Routes>
<SideBar />
</Router>
</>
);
}

Expand Down

0 comments on commit 1edf21d

Please sign in to comment.