import { Meta, StoryObj } from '@storybook/react-webpack5'; import Money from './Money'; export default { component: Money, title: 'Typography/Money', } satisfies Meta; type Story = StoryObj; export const Basic: Story = { args: { amount: 1234.5678, currency: 'GBP', }, };