Delete archaic component and copy

pull/758/head
Andrew Watkins 2017-01-11 14:48:57 -08:00
parent f10db6d3da
commit d183b65f9f
2 changed files with 0 additions and 28 deletions

View File

@ -1,18 +0,0 @@
import React from 'react';
import ClusterError from 'shared/components/ClusterError';
import PanelHeading from 'shared/components/PanelHeading';
import PanelBody from 'shared/components/PanelBody';
import errorCopy from 'hson!shared/copy/errors.hson';
const NoDataNodeError = React.createClass({
render() {
return (
<ClusterError>
<PanelHeading>{errorCopy.noData.head}</PanelHeading>
<PanelBody>{errorCopy.noData.body}</PanelBody>
</ClusterError>
);
},
});
export default NoDataNodeError;

View File

@ -1,10 +0,0 @@
{
noData: {
head: `Unable to find a data node!`,
body: `Make sure your cluster is configured correctly by verifying that at least one valid data node is part of your cluster.`,
},
noCluster: {
head: `Unable to communicate with cluster!`,
body: `Make sure your cluster is configured correctly by verifying that at least one valid meta and data node is part of your cluster.`,
},
}