import React from 'react'; import { Meta, Story } from '@storybook/react'; import Select, { Props } from './Select'; import './Select.css'; const meta: Meta = { title: 'UI/Select', component: Select, argTypes: { label: { control: { type: 'text', }, }, className: { control: { type: 'text', }, }, disabled: { control: { type: 'boolean', }, }, }, parameters: { controls: { expanded: true }, }, }; export default meta; const Template: Story = args =>