Import TexasResellers into Gitea

This commit is contained in:
Claude
2026-07-30 18:39:06 -05:00
commit bc1b610332
24 changed files with 8910 additions and 0 deletions
+14
View File
@@ -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>
)
}