import type { Meta, StoryObj } from "@storybook/react-vite";
import { GridFrame, ModuleCard } from "../index";
import { moduleBlocks } from "./story-data";
const meta = {
title: "UI/GridFrame",
component: GridFrame,
render: (args) => (
),
} satisfies Meta;
export default meta;
type Story = StoryObj;
export const Dense: Story = {
args: {
density: "dense",
},
};