Я пытаюсь добавить div с id, используя машинописный текст, но он не присваивается. Я только получаю div
app.component.html
<div class="one" [innerHtml]="htmlToAdd">
</div>
app.component.ts
import { Component } from '@angular/core';
import { Http } from '@angular/http';
import * as shape from 'd3-shape';
import { ElementRef } from '@angular/core';
declare var $: any;
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
ngOnInit() {
this.addDiv()
}
addDiv(){
this.htmlToAdd = '<div class="two" id="myId">my div</div>';
}
}