docs: showcase host components

This commit is contained in:
Corbin Crutchley
2023-12-27 10:37:47 -07:00
parent c0e933c0f1
commit 2958ceff57

View File

@@ -258,3 +258,14 @@ class RedDirective {
export class App {}
```
This will output to something akin to the following Angular template:
```html
<red-div
[style]="selected ? 'background-color: red; color: white;' : ''"
(click)="selected = !selected"
>
<span>This is red when I am selected</span>
</red-div>
```