formatting

This commit is contained in:
StevanFreeborn
2022-06-26 11:49:03 -05:00
parent 7ff302a41d
commit da36cfa782
10 changed files with 61 additions and 12 deletions
+8
View File
@@ -10,13 +10,21 @@ import Footer from './components/footer';
export default function App() {
return (
<div className='d-flex flex-column min-vh-100'>
<NavBar/>
<Routes>
<Route path='/' element={<Home/>}/>
<Route path='/About' element={<About/>}/>
</Routes>
<Footer/>
</div>
);
}