import { Meta, StoryObj } from '@storybook/react-webpack5'; import Progress from './Progress'; export default { component: Progress, title: 'Other/Progress', } satisfies Meta; type Story = StoryObj; export const Basic: Story = { args: { progress: { value: 50, max: 100 }, }, };