import type { Meta, StoryObj } from '@storybook/react' import { Row } from './index'; const meta: Meta = { component: Row, }; export default meta; type Story = StoryObj; export const Primary: Story = { args: { justifyContent: 'flex-start' }, };