import { Component, OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; @Component({ selector: 'about', styles: [` `], template: `

ABOUT US

This is a normally (non Lazy-Loaded) Component

` }) export class AboutComponent implements OnInit { public localState: any; constructor() { } public ngOnInit() { } }