create test case list table

This commit is contained in:
Takeshi Kimata
2024-02-24 21:19:22 +09:00
parent c93262f89d
commit b09fef7b2c
6 changed files with 70 additions and 130 deletions

View File

@@ -7,10 +7,10 @@ export default function SidebarLayout({
}) {
return (
<>
<div className="flex border-t-1 min-h-screen">
<div className="flex border-t-1 dark:border-neutral-700 min-h-screen">
<Sidebar />
<div className="flex w-full">
<div className="flex-grow bg-white rounded-lg">{children}</div>
<div className="flex-grow">{children}</div>
</div>
</div>
</>