react-code-dataset
/
react-query
/examples
/angular
/infinite-query-with-max-pages
/src
/app
/app.component.ts
| import { ChangeDetectionStrategy, Component } from '@angular/core' | |
| import { ExampleComponent } from './components/example.component' | |
| ({ | |
| changeDetection: ChangeDetectionStrategy.OnPush, | |
| selector: 'app-root', | |
| template: `<example />`, | |
| imports: [ExampleComponent], | |
| }) | |
| export class AppComponent {} | |