angular/integration/defer/src/app/defer.component.ts
Joey Perrott 894c1c5f10 refactor: apply prettier formatting to integration (#54653)
Apply prettier formatting to integration directories

PR Close #54653
2024-04-02 20:42:04 +00:00

10 lines
189 B
TypeScript

import {Component} from '@angular/core';
@Component({
standalone: true,
selector: 'defer-cmp',
template: `
<h2>Defer-loaded component</h2>
`,
})
export class DeferComponent {}