all files / app/feature-one/ feature-one.component.ts

100% Statements 6/6
100% Branches 0/0
100% Functions 3/3
100% Lines 4/4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 281×                                     1×       1×     1×  
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() {
  }
 
}