import React from 'react'; import ChartContainer from './ChartContainer'; import ControlPanelsContainer from './ControlPanelsContainer'; import QueryAndSaveButtons from './QueryAndSaveButtons'; export default class ExploreViewContainer extends React.Component { constructor(props) { super(props); this.state = { height: this.getHeight(), }; } getHeight() { const navHeight = 90; return `${window.innerHeight - navHeight}px`; } render() { return (
{}} />
); } }