UNPKG

ace-component

Version:

ace-components for ewms

20 lines (12 loc) 333 B
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; @Component({ selector: 'app-home', templateUrl: './home.component.html', styleUrls: ['./home.component.scss'], encapsulation: ViewEncapsulation.None }) export class HomeComponent implements OnInit { constructor() { } ngOnInit() { } }