toggle: function() {
    this.setState({
      display: 'photos' === this.state.display ? 'patterns' : 'photos',
    });
  },