2024-03-06 15:59:51 -08:00
|
|
|
// Copyright 2024 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import * as React from 'react';
|
|
|
|
import type { Meta } from '@storybook/react';
|
|
|
|
import type { Props } from './TitleTransitionNotification';
|
|
|
|
import { TitleTransitionNotification } from './TitleTransitionNotification';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'Components/Conversation/TitleTransitionNotification',
|
|
|
|
} satisfies Meta<Props>;
|
|
|
|
|
2025-03-13 12:52:08 -07:00
|
|
|
const { i18n } = window.SignalContext;
|
2024-03-06 15:59:51 -08:00
|
|
|
|
|
|
|
export function Default(): JSX.Element {
|
|
|
|
return <TitleTransitionNotification oldTitle="alice.01" i18n={i18n} />;
|
|
|
|
}
|