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