All files / app/features/public/pages/about-page about-page.ts

100% Statements 6/6
100% Branches 10/10
100% Functions 2/2
100% Lines 2/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17                    60x     20x      
import { Component } from '@angular/core';
import { RouterLink, RouterOutlet } from '@angular/router';
import { FooterComponent } from "../../../../shared/ui/footer/footer.component";
import { initFlowbite } from 'flowbite';
 
@Component({
  selector: 'app-about-page',
  imports: [RouterOutlet, RouterLink, FooterComponent],
  templateUrl: './about-page.html',
})
export class AboutPage {
  
  ngOnInit(): void {
    initFlowbite();
  }
}