Skip to content

Instantly share code, notes, and snippets.

View christianliebel's full-sized avatar
🛠️
Building awesome web applications

Christian Liebel christianliebel

🛠️
Building awesome web applications
View GitHub Profile
@christianliebel
christianliebel / 01-on-push.ts
Last active November 30, 2022 22:30
Angular Performance Article
@Component({
selector: 'my-component',
template: '{{ foo }}',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class MyComponent {
@Input()
foo: string;
}