insertContent()

in src/plugin/index.tsx [155:169]


  insertContent() {
    if (!this.isInternalReactPlugin() && this.container != null) {
      if (this.container.hasChildNodes()) {
        this.container.innerHTML = ''
      }

      if (this.content instanceof HTMLElement) {
        this.container.appendChild(this.content)
      } else if (typeof this.content === 'string') {
        this.container.innerHTML = this.content
      }
    }

    this.updateContent()
  }