import PropTypes from 'prop-types'; import { PureComponent } from 'react'; import Connection from './connection'; class ConnectionsList extends PureComponent { static propTypes = { connections: PropTypes.array, onToggle: PropTypes.func, siteId: PropTypes.number, siteSlug: PropTypes.string, }; static defaultProps = { connections: [], }; renderEmptyPlaceholder() { return (