const React = require('react'); const NodesError = React.createClass({ render: function() { let classNames = 'nodes-chart-error'; if (this.props.hidden) { classNames += ' hide'; } const iconClassName = 'fa ' + this.props.faIconClass; return (
{this.props.children}
); } }); module.exports = NodesError;