import React from 'react'; import PropTypes from 'prop-types'; import Controls from './Controls'; const propTypes = { dashboard: PropTypes.object, }; const defaultProps = { }; class Header extends React.PureComponent { constructor(props) { super(props); this.state = { }; } render() { const dashboard = this.props.dashboard; return (