Project

General

Profile

1
import {Component, OnInit} from "@angular/core";
2

    
3
@Component ({
4
  selector: 'app-compatibility',
5
  templateUrl: 'compatibility.component.html'
6
})
7

    
8
export class CompatibilityComponent implements OnInit {
9
  constructor() {}
10

    
11
  ngOnInit() {}
12
}
(6-6/8)