Notes are WIP
<aside> 📽️ From Stephen Grider's course: The Modern Angular Bootcamp: link
</aside>
add different file types' description
add **event-**binding syntax definition from lecture 10
add **property-**binding syntax definition from lecture 11 (can also put method call in there inside " ")
Interpolation syntax from lecture 12
Structural Directive from lecture 22
Attribute Directive from lecture 22
All of above in lecture 24
Add static files like images to Angular
Components lec 30
commands like ng generate component <name>
How to nest a component inside another lec 31
How angular creates components lec 32
Decorator in Angular
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
Angular says anytime I see any HTML element with the name 'app-root' (See above), I will create an instance of the component (which is defined below the decorator (see below e.g.)) and show it on the DOM
export class AppComponent {
title = 'angular-cards';
}
Flow diagram at lec 32: 3.34
CSS Scoping lec 33
Tying Data to component lec 34
Accepting data in a child component lec 35