import React from 'react' import {connect} from 'react-redux' import TagNavigation from '../components/TagNavigation' import Variables from '../components/Variables' import * as actions from '../actions' import {bindActionCreators} from 'redux' import {tagsToSelectSelector, variablesSelector} from '../selectors' class Explorer extends React.Component { render() { let {variables, selectedTags, selectedVariable, tagsToSelect, actions: {selectTag, selectVariable}} = this.props return (