import {createFileRoute} from "@tanstack/react-router"; //import GridLayout from "react-grid-layout"; import "../../node_modules/react-grid-layout/css/styles.css"; import "../../node_modules/react-resizable/css/styles.css"; export const Route = createFileRoute("/")({ component: Index, }); function Index() { // const [layout, setLayout] = useState([ // { // i: "PPOO", // x: 0, // y: 0, // w: 5, // h: 3, // minW: 2, // maxW: 6, // minH: 2, // maxH: 4, // isResizable: true, // isDraggable: true, // }, // {i: "OCPLogs", x: 2, y: 0, w: 5, h: 3, isResizable: true, isDraggable: true}, // ]); // const [cardData, setCardData] = useState([ // {i: "card1", name: "PPOO"}, // {i: "card2", name: "OCPLogs"}, // ]); return ( <> {/* */} {/*
a
b
c
*/}
Empty Space why dont you add some cards?
); }