signal-desktop/ts/components/conversation/media-gallery/EmptyState.tsx

13 lines
270 B
TypeScript
Raw Normal View History

2020-10-30 15:34:04 -05:00
// Copyright 2018-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2018-04-26 17:52:43 -04:00
import React from 'react';
type Props = {
2018-04-26 17:52:43 -04:00
label: string;
};
2018-04-26 17:52:43 -04:00
2020-09-14 12:51:27 -07:00
export const EmptyState = ({ label }: Props): JSX.Element => (
<div className="module-empty-state">{label}</div>
);