// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React, { useState } from 'react'; import { action } from '@storybook/addon-actions'; import { Select } from './Select'; export default { title: 'Components/Select', }; export const Normal = (): JSX.Element => { const [value, setValue] = useState(0); const onChange = action('onChange'); return ( ); WithDisabledOptions.story = { name: 'With disabled options', };