// 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 './CaptchaDialog'; import { CaptchaDialog } from './CaptchaDialog'; import { Button } from './Button'; import { setupI18n } from '../util/setupI18n'; import enMessages from '../../_locales/en/messages.json'; const i18n = setupI18n('en', enMessages); export default { title: 'Components/CaptchaDialog', argTypes: { isPending: { control: { type: 'boolean' } }, }, args: { i18n, isPending: false, onContinue: action('onContinue'), }, } satisfies Meta; export function Basic(args: PropsType): JSX.Element { const [isSkipped, setIsSkipped] = useState(false); if (isSkipped) { return ; } return setIsSkipped(true)} />; }