Skip to content

Instantly share code, notes, and snippets.

@ssougnez
Last active October 13, 2021 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssougnez/942c66a8db9fd56f77e8c68dfd2b2f77 to your computer and use it in GitHub Desktop.
Save ssougnez/942c66a8db9fd56f77e8c68dfd2b2f77 to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-main',
template: `<div [innerHTML]="content"></div>`,
styles: ['.bold { font-weight: bold; }'],
})
export class MainComponent {
public content: string = `<p class="bold">I'm the main component</p>
<p><a href="/hello">Hello</a></p>
<p><a href="https://angular-rxe6rp.stackblitz.io/bye">Bye</a></p>
<p><a href="https://www.medium.com">Medium</a></p>`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment