import { services } from '@broadleaf/admin-components';
const { ActionRegistrar } = services;
// specify the parent classifier and the parent component type, then the action, its placement and type
ActionRegistrar.registerActionComponent('View', 'ENTITY', {
component: MyActionComponent,
placement: 'PRIMARY',
type: 'MY_ACTION'
});