import React, { useCallback } from 'react'; import { useTranslation } from 'react-i18next'; import { useDispatch, useSelector } from 'react-redux'; // @ts-ignore import { IconMenuDown } from '../../../base/icons'; // @ts-ignore import { Label } from '../../../base/label'; // @ts-ignore import { Tooltip } from '../../../base/tooltip'; // @ts-ignore import { setTopPanelVisible } from '../../../filmstrip/actions.web'; const ToggleTopPanelLabel = () => { const dispatch = useDispatch(); const { t } = useTranslation(); const topPanelHidden = !useSelector((state: any) => state['features/filmstrip'].topPanelVisible); const onClick = useCallback(() => { dispatch(setTopPanelVisible(true)); }, []); return topPanelHidden && ( ); }; export default ToggleTopPanelLabel;