import React from 'react'; import Styled from './styles'; import { GenericSidekickContentProps } from '../types'; import GenericContentItem from '../generic-content-item/component'; import { PANELS, ACTIONS } from '/imports/ui/components/layout/enums'; const GenericSidekickContent: React.FC = ({ renderFunction, layoutContextDispatch, genericContentId, genericContentLabel, }) => ( { layoutContextDispatch({ type: ACTIONS.SET_SIDEBAR_CONTENT_IS_OPEN, value: false, }); layoutContextDispatch({ type: ACTIONS.SET_SIDEBAR_CONTENT_PANEL, value: PANELS.NONE, }); }, 'data-test': `hide_${genericContentId}`, 'aria-label': genericContentLabel, label: genericContentLabel, }} customRightButton={null} /> ); export default GenericSidekickContent;