mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-07-04 20:35:10 +01:00
19 lines
583 B
TypeScript
19 lines
583 B
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { JSX } from 'react';
|
|
|
|
import type { Meta } from '@storybook/react';
|
|
import type { Props } from './InstallScreenLinkInProgressStep.dom.tsx';
|
|
import { InstallScreenLinkInProgressStep } from './InstallScreenLinkInProgressStep.dom.tsx';
|
|
|
|
const { i18n } = window.SignalContext;
|
|
|
|
export default {
|
|
title: 'Components/InstallScreen/InstallScreenLinkInProgressStep',
|
|
} satisfies Meta<Props>;
|
|
|
|
export function Default(): JSX.Element {
|
|
return <InstallScreenLinkInProgressStep i18n={i18n} />;
|
|
}
|