11 lines
176 B
React
11 lines
176 B
React
|
|
import { Outlet } from 'react-router-dom';
|
||
|
|
import Navbar from './Navbar';
|
||
|
|
|
||
|
|
export default function Layout() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<Navbar />
|
||
|
|
<Outlet />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|