EasyRecon/Hunt3r

View on GitHub
frontend/src/app/app.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Component } from '@angular/core';
import{ NbThemeService } from '@nebular/theme';
@Component({
  selector: 'app-root',
  template: '<router-outlet></router-outlet>',
  styleUrls: ['./app.component.scss']
})
export class AppComponent {
  title = 'Hunt3r-UI';
  constructor(private themeService: NbThemeService) {
    //this.themeService.changeTheme('corporate');
  }
}