import React from 'react'; import { FormattedMessage } from 'react-intl'; import MenuButton from 'components/common/MenuButton'; import Gear from 'assets/gear.svg'; import useStore, { setDashboard } from 'store/app'; const selector = state => state.dashboard; export default function DashboardSettingsButton() { const settings = useStore(selector); const menuOptions = [ { label: , value: 'charts', }, ]; function handleSelect(value) { if (value === 'charts') { setDashboard({ showCharts: !settings.showCharts }); } //setDashboard(value); } return } options={menuOptions} onSelect={handleSelect} hideLabel />; }