Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save GuillaumeDaviid/3ae0401af0820268e2baf60c97dd30cd to your computer and use it in GitHub Desktop.

Select an option

Save GuillaumeDaviid/3ae0401af0820268e2baf60c97dd30cd to your computer and use it in GitHub Desktop.
Angular : OnPush
import { ChangeDetectionStrategy, Component} from '@angular/core';
@Component({
selector: 'app-my-component',
templateUrl: './my-component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: true
})
export class MyComponent {
// votre code ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment