// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React, { useState } from 'react'; import { action } from '@storybook/addon-actions'; import { storiesOf } from '@storybook/react'; import { Select } from './Select'; const story = storiesOf('Components/Select', module); story.add('Normal', () => { const [value, setValue] = useState(0); const onChange = action('onChange'); return ( ));