signal-desktop/ts/components/conversation/media-gallery/EmptyState.tsx
Jamie Kyle 502ea174ab
Upgrade Storybook
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2023-10-11 12:06:43 -07:00

12 lines
276 B
TypeScript

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