mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
10 lines
189 B
TypeScript
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 {}
|