mirror of
https://github.com/its-michaelroy/Deep-Impact.git
synced 2026-06-04 02:20:41 +00:00
18 lines
300 B
JavaScript
18 lines
300 B
JavaScript
import { Outlet } from 'react-router-dom'
|
|
import './App.css'
|
|
import NavBar from './components/navbar'
|
|
|
|
function App() {
|
|
|
|
return (
|
|
<>
|
|
<div className='flex flex-col items-center bg-gray-600 min-h-screen'>
|
|
<NavBar />
|
|
<Outlet />
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default App
|