angular/integration/dynamic-compiler/src/lazy.module.ts
alkavats1 afb7ea4e8c refactor: removed the unused contructor in lazyModule (#50536)
empty constructor removed and reduced the codesmells

PR Close #50536
2023-06-12 15:35:35 +02:00

17 lines
270 B
TypeScript

import {NgModule, Component} from '@angular/core';
@Component({
selector: 'lazy-component',
template: 'Lazy-loaded component!',
jit: true
})
export class LazyComponent {
}
@NgModule({
declarations: [LazyComponent],
jit: true,
})
export class LazyModule {
}