mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-25 04:36:46 +00:00
Edit distribution lists via story settings menu
This commit is contained in:
21
ts/components/StoryDistributionListName.tsx
Normal file
21
ts/components/StoryDistributionListName.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import type { LocalizerType } from '../types/Util';
|
||||
import { getStoryDistributionListName } from '../types/Stories';
|
||||
|
||||
type PropsType = {
|
||||
i18n: LocalizerType;
|
||||
id: string;
|
||||
name: string;
|
||||
};
|
||||
|
||||
export const StoryDistributionListName = ({
|
||||
i18n,
|
||||
id,
|
||||
name,
|
||||
}: PropsType): JSX.Element => {
|
||||
return <>{getStoryDistributionListName(i18n, id, name)}</>;
|
||||
};
|
||||
Reference in New Issue
Block a user