codex-marketplace-ui-compon.../stories/SpaceAllocation.stories.ts

38 lines
842 B
TypeScript
Raw Normal View History

2024-08-20 13:57:59 +00:00
import type { Meta, StoryObj } from "@storybook/react";
import { SpaceAllocation } from "../src/components/SpaceAllocation/SpaceAllocation";
2024-08-20 13:57:59 +00:00
const meta = {
title: "Advanced/SpaceAllocation",
component: SpaceAllocation,
parameters: {
layout: "centered",
},
tags: ["autodocs"],
argTypes: {},
} satisfies Meta<typeof SpaceAllocation>;
export default meta;
type Story = StoryObj<typeof meta>;
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,
},
],
},
};