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