36 lines
905 B
TypeScript
36 lines
905 B
TypeScript
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import React from 'react';
|
|
import { action } from '@storybook/addon-actions';
|
|
import { setupI18n } from '../util/setupI18n';
|
|
import enMessages from '../../_locales/en/messages.json';
|
|
import type { ComponentMeta } from '../storybook/types';
|
|
import type { AboutProps } from './About';
|
|
import { About } from './About';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
export default {
|
|
title: 'Components/About',
|
|
component: About,
|
|
parameters: {
|
|
layout: 'fullscreen',
|
|
},
|
|
args: {
|
|
i18n,
|
|
closeAbout: action('showWhatsNewModal'),
|
|
appEnv: 'production',
|
|
platform: 'darwin',
|
|
arch: 'arm64',
|
|
version: '1.2.3',
|
|
},
|
|
} satisfies ComponentMeta<AboutProps>;
|
|
|
|
export function Basic(args: AboutProps): JSX.Element {
|
|
return (
|
|
<div style={{ height: '100vh' }}>
|
|
<About {...args} />
|
|
</div>
|
|
);
|
|
}
|