Export/import simple update messages
This commit is contained in:
parent
19083cadf7
commit
9df3c63ca6
14 changed files with 1604 additions and 386 deletions
|
@ -0,0 +1,19 @@
|
|||
// Copyright 2024 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import * as React from 'react';
|
||||
import type { Meta } from '@storybook/react';
|
||||
import { setupI18n } from '../../util/setupI18n';
|
||||
import enMessages from '../../../_locales/en/messages.json';
|
||||
import type { Props } from './JoinedSignalNotification';
|
||||
import { JoinedSignalNotification } from './JoinedSignalNotification';
|
||||
|
||||
export default {
|
||||
title: 'Components/Conversation/JoinedSignalNotification',
|
||||
} satisfies Meta<Props>;
|
||||
|
||||
const i18n = setupI18n('en', enMessages);
|
||||
|
||||
export function Default(): JSX.Element {
|
||||
return <JoinedSignalNotification timestamp={1618894800000} i18n={i18n} />;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue