import React from 'react' import { InputSelect } from './index' export default { title: 'atoms/InputSelect', component: InputSelect, argTypes: { backgroundColor: { control: 'color' } }, args: { options: [ { label: 'Hola', value: 'Hello' } ] } } const Template = (args: any): any => { return } export const InputSelectView = Template.bind({})