feat: create story for currency dropdown menu

This commit is contained in:
RadoslavDimchev 2023-09-27 00:00:13 +03:00
parent 777b2fc6f0
commit a0aa8b53fb

View File

@ -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<typeof CurrencyDropdown>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {
changeCurrency: () => {},
},
}