app.component.ts 579 Bytes
Newer Older
Ooh-Ao committed
1 2
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
Ooh-Ao committed
3 4
import { NgxEchartsDirective, provideEcharts } from 'ngx-echarts';
import { ConsultancyComponent } from './components';
Ooh-Ao committed
5
import { HttpClient, HttpClientModule } from '@angular/common/http';
Ooh-Ao committed
6 7 8 9

@Component({
  selector: 'app-root',
  standalone: true,
Ooh-Ao committed
10
  imports: [RouterOutlet, NgxEchartsDirective, HttpClientModule],
Ooh-Ao committed
11
  templateUrl: './app.component.html',
Ooh-Ao committed
12 13 14 15
  styleUrl: './app.component.scss',
  providers: [
    provideEcharts(),
  ]
Ooh-Ao committed
16 17 18 19
})
export class AppComponent {
  title = 'dynamic-myhr';
}