{{!-- template-lint-disable no-at-ember-render-modifiers --}}
<div
  ...attributes
  {{did-insert this.createEditor this.optionsWithInitEvent}}
  {{did-update this.updateEditorContent @content}}
  {{did-update this.updateDisabledState @disabled}}
  {{will-destroy this.destroyEditor}}
>
  {{#if this.fastboot.isFastboot}}
    {{@content}}
  {{else}}
    {{! template-lint-disable no-unbound }}
    {{unbound @content}}
  {{/if}}
</div>