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