From a0aa8b53fbaedd920ca0fe5d92bf61cc50e7d5de Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Wed, 27 Sep 2023 00:00:13 +0300 Subject: [PATCH] feat: create story for currency dropdown menu --- .../General/CurrencyDropdown.stories.tsx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/components/General/CurrencyDropdown.stories.tsx diff --git a/src/components/General/CurrencyDropdown.stories.tsx b/src/components/General/CurrencyDropdown.stories.tsx new file mode 100644 index 00000000..6b573527 --- /dev/null +++ b/src/components/General/CurrencyDropdown.stories.tsx @@ -0,0 +1,21 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import CurrencyDropdown from './CurrencyDropdown' + +const meta = { + title: 'General/CurrencyDropdown', + component: CurrencyDropdown, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Default: Story = { + args: { + changeCurrency: () => {}, + }, +}