import React, { useState } from 'react'; import { Story } from '@storybook/react'; import { Select } from '../../components/data-entry/Select'; import { SelectProps } from '../../components/data-entry/Select/Select'; export default { component: Select, title: 'Data-Entry/Select' }; const Template: Story> = (args) => ); };