Created
February 9, 2022 21:36
-
-
Save alxhub/9716d1f3312506100519f6e87f8ba03f to your computer and use it in GitHub Desktop.
How the Angular Compiler Works - AppComponent Before Compilation
This file contains hidden or 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
import {Component} from '@angular/core'; | |
@Component({ | |
selector: 'app-cmp', | |
template: '<span>Your name is {{name}}</span>', | |
}) | |
export class AppCmp { | |
name = 'Alex'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment