import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-feature-one', template: `

Lazy-Loaded Feature Modules

This is an example of a Lazy-Loaded Feature Module

This route is protected by the logged-in and account-selected guards

`, styleUrls: ['./feature-one.component.scss'] }) export class FeatureOneComponent implements OnInit { constructor() { } ngOnInit() { } }