Import TexasResellers into Gitea
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user