14 lines
333 B
TypeScript
14 lines
333 B
TypeScript
import { Outlet } from 'react-router-dom'
|
|
import { Navbar } from '../components/Navbar'
|
|
|
|
export function AppLayout() {
|
|
return (
|
|
<div className="min-h-screen bg-slate-50">
|
|
<Navbar />
|
|
<main className="mx-auto flex max-w-6xl flex-col gap-6 px-4 py-8 sm:px-6 lg:px-8">
|
|
<Outlet />
|
|
</main>
|
|
</div>
|
|
)
|
|
}
|