import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-lazy-module', template: '

lazy-module works!

', styles: [], }) export class LazyModuleComponent implements OnInit { constructor() {} ngOnInit(): void {} }