signal-desktop/ts/components/ClearingData.stories.tsx

19 lines
547 B
TypeScript
Raw Normal View History

2021-08-24 16:57:34 -04:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { action } from '@storybook/addon-actions';
import type { Meta } from '@storybook/react';
import type { PropsType } from './ClearingData';
2021-08-24 16:57:34 -04:00
import { ClearingData } from './ClearingData';
2025-03-13 12:52:08 -07:00
const { i18n } = window.SignalContext;
2021-08-24 16:57:34 -04:00
2022-06-06 20:48:02 -04:00
export default {
title: 'Components/ClearingData',
} satisfies Meta<PropsType>;
2022-06-06 20:48:02 -04:00
export function Basic(): JSX.Element {
return <ClearingData deleteAllData={action('deleteAllData')} i18n={i18n} />;
}