signal-desktop/ts/components/conversation/media-gallery/EmptyState.tsx
2022-11-17 16:45:19 -08:00

12 lines
274 B
TypeScript

// Copyright 2018-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
type Props = {
label: string;
};
export function EmptyState({ label }: Props): JSX.Element {
return <div className="module-empty-state">{label}</div>;
}