import type { Meta, StoryObj } from "@storybook/react"; import { SpaceAllocation } from "../src/components/SpaceAllocation/SpaceAllocation"; const meta = { title: "Advanced/SpaceAllocation", component: SpaceAllocation, parameters: { layout: "centered", }, tags: ["autodocs"], argTypes: {}, } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { args: { data: [ { title: "Maximum storage space used by the node", percent: 60, size: 10000000, }, { title: "Amount of storage space currently in use", percent: 20, size: 10000000 * 0.2, }, { title: "Amount of storage space reserved", percent: 20, size: 10000000 * 0.2, }, ], }, };