Created
December 30, 2020 17:33
-
-
Save andrewarosario/d2172ec36eda9215dfe00b34986f99c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component({ | |
selector: "my-app", | |
template: ` | |
<div class="container"> | |
<div>Digite sua nota:</div> | |
<textarea [formControl]="note" class="note-input"></textarea> | |
<div class="save-indicator">{{ saveIndicator$ | async }}</div> | |
</div> | |
`, | |
styleUrls: ["./app.component.css"] | |
}) | |
export class AppComponent { | |
note = new FormControl(""); | |
saveIndicator$ = of("Todas as mudanças foram salvas"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment