Skip to content

Instantly share code, notes, and snippets.

@alxhub
Created February 9, 2022 21:36
Show Gist options
  • Save alxhub/9716d1f3312506100519f6e87f8ba03f to your computer and use it in GitHub Desktop.
Save alxhub/9716d1f3312506100519f6e87f8ba03f to your computer and use it in GitHub Desktop.
How the Angular Compiler Works - AppComponent Before Compilation
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