Skip to content
Snippets Groups Projects
BlockDropDownToolGroupService.js 265 B
Newer Older
chris's avatar
chris committed
import Service from '../../Service';
import BlockDropDown from './BlockDropDown';

class BlockDropDownToolGroupService extends Service {
  register() {
    this.container.bind('BlockDropDown').to(BlockDropDown);
  }
}

export default BlockDropDownToolGroupService;