2023-02-13 18:51:41 +00:00
|
|
|
// Copyright 2023 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import React from 'react';
|
2023-10-11 19:06:43 +00:00
|
|
|
import type { Meta, StoryFn } from '@storybook/react';
|
2023-02-13 18:51:41 +00:00
|
|
|
|
2023-10-11 19:06:43 +00:00
|
|
|
import { action } from '@storybook/addon-actions';
|
2023-02-13 18:51:41 +00:00
|
|
|
import enMessages from '../../_locales/en/messages.json';
|
|
|
|
import { setupI18n } from '../util/setupI18n';
|
|
|
|
|
|
|
|
import type { PropsType } from './UsernameOnboardingModalBody';
|
|
|
|
import { UsernameOnboardingModalBody } from './UsernameOnboardingModalBody';
|
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
|
|
|
export default {
|
|
|
|
component: UsernameOnboardingModalBody,
|
|
|
|
title: 'Components/UsernameOnboardingModalBody',
|
2023-10-11 19:06:43 +00:00
|
|
|
args: {
|
|
|
|
i18n,
|
|
|
|
onNext: action('onNext'),
|
2023-02-13 18:51:41 +00:00
|
|
|
},
|
2023-10-11 19:06:43 +00:00
|
|
|
} satisfies Meta<PropsType>;
|
2023-02-13 18:51:41 +00:00
|
|
|
|
|
|
|
// eslint-disable-next-line react/function-component-definition
|
2023-10-11 19:06:43 +00:00
|
|
|
const Template: StoryFn<PropsType> = args => {
|
2023-02-13 18:51:41 +00:00
|
|
|
return <UsernameOnboardingModalBody {...args} />;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const Normal = Template.bind({});
|