UNPKG

@atlaskit/editor-plugin-block-menu

Version:

BlockMenu plugin for @atlaskit/editor-core

16 lines 409 B
import React from 'react'; import { useIntl } from 'react-intl'; import { ToolbarDropdownItemSection } from '@atlaskit/editor-toolbar'; export const MenuSection = ({ children, title, hasSeparator }) => { const { formatMessage } = useIntl(); return /*#__PURE__*/React.createElement(ToolbarDropdownItemSection, { title: formatMessage(title), hasSeparator: hasSeparator }, children); };