Skip to content

Commit b103630

Browse files
committed
matrix
1 parent ea0406f commit b103630

File tree

10 files changed

+815
-78
lines changed

10 files changed

+815
-78
lines changed

package-lock.json

Lines changed: 214 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@
3434
"@types/react": "^19",
3535
"@types/react-dom": "^19",
3636
"@types/react-plotly.js": "^2.6.3",
37+
"@types/react-query": "^1.2.8",
3738
"@types/react-router-dom": "^5.3.3",
3839
"@types/react-select": "^5.0.0",
3940
"eslint": "^9",
4041
"eslint-config-next": "15.3.3",
4142
"tailwindcss": "^4.1.10",
4243
"typescript": "^5"
4344
}
44-
}
45+
}

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default function RootLayout({ children }: { children: ReactNode }) {
1818
<Navbar />
1919
<div className="flex flex-1 overflow-hidden">
2020
<Sidebar />
21-
<main className="flex-1 h-[calc(100vh-52px)] overflow-auto">
21+
<main className="flex-1 h-[calc(100vh-52px)] overflow-auto bg-gray-50 ">
2222
{children}
2323
</main>
2424
</div>

0 commit comments

Comments
 (0)