import React from 'react'; import styled from 'styled-components'; import Select from './'; import { options } from './options'; const Container = styled.div` display: flex; height: 100%; width: 100%; justify-content: center; align-items: center; > div { width: 90%; } `; export default { title: 'Select', component: Select, }; const Template = (args) => (