import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-feature-one',
template: `
<div class="container">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="text-danger">Lazy-Loaded Feature Modules</h4>
</div>
<div class="panel-body text-center">
<h4 class="text-primary bottom-spacer-20">This is an example of a Lazy-Loaded Feature Module</h4>
<h4 class="text-primary">This route is protected by the logged-in and account-selected guards</h4>
</div>
</div>
</div>
`,
styleUrls: ['./feature-one.component.scss']
})
export class FeatureOneComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
|