mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-21 08:58:19 +01:00
@@ -2,19 +2,18 @@
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { action } from '@storybook/addon-actions';
|
||||
|
||||
import type { Meta } from '@storybook/react';
|
||||
import { setupI18n } from '../../util/setupI18n';
|
||||
import enMessages from '../../../_locales/en/messages.json';
|
||||
|
||||
import type { Props } from './InstallScreenErrorStep';
|
||||
import { InstallScreenErrorStep, InstallError } from './InstallScreenErrorStep';
|
||||
|
||||
const i18n = setupI18n('en', enMessages);
|
||||
|
||||
export default {
|
||||
title: 'Components/InstallScreen/InstallScreenErrorStep',
|
||||
};
|
||||
} satisfies Meta<Props>;
|
||||
|
||||
const defaultProps = {
|
||||
i18n,
|
||||
@@ -29,26 +28,14 @@ export const _TooManyDevices = (): JSX.Element => (
|
||||
/>
|
||||
);
|
||||
|
||||
_TooManyDevices.story = {
|
||||
name: 'Too many devices',
|
||||
};
|
||||
|
||||
export const _TooOld = (): JSX.Element => (
|
||||
<InstallScreenErrorStep {...defaultProps} error={InstallError.TooOld} />
|
||||
);
|
||||
|
||||
_TooOld.story = {
|
||||
name: 'Too old',
|
||||
};
|
||||
|
||||
export const __TooOld = (): JSX.Element => (
|
||||
<InstallScreenErrorStep {...defaultProps} error={InstallError.TooOld} />
|
||||
);
|
||||
|
||||
__TooOld.story = {
|
||||
name: 'Too old',
|
||||
};
|
||||
|
||||
export const _ConnectionFailed = (): JSX.Element => (
|
||||
<InstallScreenErrorStep
|
||||
{...defaultProps}
|
||||
@@ -56,14 +43,6 @@ export const _ConnectionFailed = (): JSX.Element => (
|
||||
/>
|
||||
);
|
||||
|
||||
_ConnectionFailed.story = {
|
||||
name: 'Connection failed',
|
||||
};
|
||||
|
||||
export const _UnknownError = (): JSX.Element => (
|
||||
<InstallScreenErrorStep {...defaultProps} error={InstallError.UnknownError} />
|
||||
);
|
||||
|
||||
_UnknownError.story = {
|
||||
name: 'Unknown error',
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user