// @flow import * as React from 'react'; import Select from './Select'; import notes from './Select.stories.md'; export const basic = () => ( ); export const disabled = () => ( ); export const withErrorMessage = () => ( ); export const withErrorOutline = () => ( ); export const withInfoTooltip = () => ( ); export default { title: 'Components/Select', component: Select, parameters: { notes, }, };