Project

General

Profile

1
import { Component, OnInit, Input } from '@angular/core';
2
import { DashboardSection } from './../../../shared/models/dashboard-section.interface';
3

    
4
@Component({
5
  selector: 'app-dashboard-metrics',
6
  templateUrl: './dashboard-metrics.component.html',
7
  styleUrls: ['./dashboard-metrics.component.scss']
8
})
9
export class DashboardMetricsComponent implements OnInit {
10

    
11
  @Input() section: DashboardSection;
12

    
13
  constructor() { }
14

    
15
  ngOnInit(): void {
16
  }
17

    
18
}
(4-4/4)