feat(platform-browser-dynamic): export JitCompilerFactory
(#20478)
Fixes #20125 PR Close #20478
This commit is contained in:

committed by
Miško Hevery

parent
437a0446e2
commit
d7a727cc07
17
integration/dynamic-compiler/src/lazy.module.ts
Normal file
17
integration/dynamic-compiler/src/lazy.module.ts
Normal file
@ -0,0 +1,17 @@
|
||||
import {NgModule} from "@angular/core";
|
||||
import {Component} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'lazy-component',
|
||||
template: 'Lazy-loaded component!'
|
||||
})
|
||||
export class LazyComponent {
|
||||
constructor() {
|
||||
}
|
||||
}
|
||||
|
||||
@NgModule({
|
||||
declarations: [LazyComponent]
|
||||
})
|
||||
export class LazyModule {
|
||||
}
|
Reference in New Issue
Block a user