Skip to content

Commit

Permalink
Update App.js
Browse files Browse the repository at this point in the history
  • Loading branch information
gamer-1478 authored Nov 14, 2022
1 parent 81da7d3 commit 64af04a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ function Redirect(url) {
)
}

function ATLHACKS() {
return (
<div>
{(() => { Redirect('https://atlhack.herokuapp.com/') })()}
</div>
)
}

function AiDsm() {
return (
<div>
Expand All @@ -45,6 +53,7 @@ function App() {
<Route path={process.env.PUBLIC_URL + '/ai'} element={<Aihome />} />
<Route path={process.env.PUBLIC_URL + '/ai-dsm'} element={<AiDsm />} />
<Route path={process.env.PUBLIC_URL + '/discord'} element={<Logger />} />
<Route path={process.env.PUBLIC_URL + '/atlhacks'} element={<ATLHACKS />} />
<Route path="*" element={<Fourzerofour />} />
</Routes>
<Footer />
Expand All @@ -53,4 +62,4 @@ function App() {
</div >
);
}
export default App;
export default App;

0 comments on commit 64af04a

Please sign in to comment.