Skip to content

Instantly share code, notes, and snippets.

@thisiszoaib
Last active October 10, 2020 06:59
Show Gist options
  • Select an option

  • Save thisiszoaib/5612e420785b6a16e7702480ad74af84 to your computer and use it in GitHub Desktop.

Select an option

Save thisiszoaib/5612e420785b6a16e7702480ad74af84 to your computer and use it in GitHub Desktop.
Code splitting 3
dynamicComponent: Type<ReportCardComponent>;
constructor() { }
async loadComponent(): Promise<any> {
const imported = await import('./report-card/report-card.component');
this.dynamicComponent = imported.ReportCardComponent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment