I am writing an Angular application and I have an HTML response I want to display.
How do I do that? If I simply use the binding syntax {{myVal}} it en
{{myVal}}
You can also bind the angular component class properties with template using DOM property binding.
Example:
Using canonical form like below:
Angular Documentation: https://angular.io/guide/template-syntax#property-binding-property
See working stackblitz example here