angular/modules/playground/src/jsonp/app/jsonp_comp.ts
Joey Perrott f9781f9804 refactor: migrate modules to prettier formatting (#53954)
Migrate formatting to prettier for modules directory from clang-format

PR Close #53954
2024-01-17 09:41:59 -08:00

26 lines
661 B
TypeScript

/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {HttpClient} from '@angular/common/http';
import {Component} from '@angular/core';
@Component({
selector: 'jsonp-app',
template: `
<h1>people</h1>
<ul class="people">
<li *ngFor="let person of people">hello, {{ person.name }}</li>
</ul>
`,
})
export class JsonpCmp {
people: Object;
constructor(http: HttpClient) {
http.jsonp<Object>('./people.json', 'callback').subscribe((res: Object) => (this.people = res));
}
}