15 lines
313 B
React
15 lines
313 B
React
import React from 'react'
|
|
import Sidebar from './Sidebar'
|
|
import { Outlet } from 'react-router-dom'
|
|
|
|
export default function Layout() {
|
|
return (
|
|
<div className="flex min-h-screen bg-gray-900">
|
|
<Sidebar />
|
|
<main className="flex-1 overflow-auto">
|
|
<Outlet />
|
|
</main>
|
|
</div>
|
|
)
|
|
}
|