import React from 'react'; import styled from 'styled-components'; import Select from './'; import { options } from './options'; import { Meta, StoryObj } from '@storybook/react'; const Container = styled.div` display: flex; height: 100%; width: 100%; justify-content: center; align-items: center; > div { width: 90%; } `; const meta: Meta = { title: 'Select', component: Select, }; export default meta; type Story = StoryObj; export const Default: Story = { render: ({ value, ...args }) => (