18 lines
301 B
JavaScript
18 lines
301 B
JavaScript
// src/App.jsx
|
|
import './assets/css/index.css'
|
|
import Navbar from './components/Navbar'
|
|
import Sidebar from './components/Sidebar'
|
|
import { Outlet } from 'react-router-dom'
|
|
|
|
function App() {
|
|
return (
|
|
<div>
|
|
<Navbar />
|
|
<Sidebar />
|
|
<Outlet />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default App
|