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

10 lines
184 B
TypeScript
Raw Normal View History

2018-04-26 21:52:43 +00:00
import React from 'react';
interface Props {
label: string;
}
2020-09-14 19:51:27 +00:00
export const EmptyState = ({ label }: Props): JSX.Element => (
<div className="module-empty-state">{label}</div>
);