Using modifiers on an element that is itself a classic Ember component (@ember/component) doesn't seem to work.
This poses difficulties because the developer now has to 'know'
what the
other component is.
This works great:
<div {{did-insert this.someFunc}}>
</div>
This not so much (doesn't error, doesn't execute).
<SomeOtherEmberComponent {{did-insert this.someFunc}}>
</SomeOtherEmberComponent>