import React from 'react';
import { Meta, Story } from '@storybook/react';
import { Dropdown } from '../../index';
import description from './Dropdown.md';

const meta: Meta = {
  title: 'Components/Dropdown',
  component: Dropdown,
  parameters: {
    docs: {
      description: {
        component: description,
      },
    },
  },
  argTypes: {
    children: {
      table: {
        disable: true,
      },
    },
    className: {
      type: 'string',
    },
  },
};

export default meta;

const Template: Story = (args) => <Dropdown {...args}>Dropdown</Dropdown>;

export const Default = Template.bind({});

Default.args = {};
