- added status grid items

- add react modal pkg
This commit is contained in:
2025-11-28 15:06:03 +00:00
parent 983f307c3f
commit 4e02bafa6a
8 changed files with 195 additions and 9 deletions

View File

@@ -4,9 +4,12 @@ import { RouterProvider, createRouter } from "@tanstack/react-router";
import { routeTree } from "./routeTree.gen"; // generated by plugin
import { AppProviders } from "./app/providers/AppProviders";
import "./index.css";
import Modal from "react-modal";
const router = createRouter({ routeTree });
Modal.setAppElement("#root");
declare module "@tanstack/react-router" {
interface Register {
router: typeof router;