signal-desktop/ts/components/conversation/media-gallery/EmptyState.tsx
2023-01-03 11:55:46 -08:00

12 lines
269 B
TypeScript

// Copyright 2018 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>;
}