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

17 lines
267 B
TypeScript
Raw Normal View History

2018-04-26 21:52:43 +00:00
/**
* @prettier
*/
import React from 'react';
interface Props {
label: string;
}
export class EmptyState extends React.Component<Props> {
2018-04-26 21:52:43 +00:00
public render() {
const { label } = this.props;
2018-07-18 00:15:34 +00:00
return <div className="module-empty-state">{label}</div>;
2018-04-26 21:52:43 +00:00
}
}