import { Service } from 'wax-prosemirror-core'; import BlockDropDown from './BlockDropDown'; class BlockDropDownToolGroupService extends Service { register() { this.container.bind('BlockDropDown').to(BlockDropDown); } } export default BlockDropDownToolGroupService;