The Angular 9 code is ready to go. I want to display the default paragraph on the page. However, I'm unable to apply the .scss class in the component.
.HTML:
<div [innerHTML]="htmlCode"></div>
.TS:
htmlCode: string = "<p class='newClass'>TEST</p><br>TEST<br>";
.SCSS:
.newClass{
background-color: red;
}