15 lines
259 B
TypeScript
15 lines
259 B
TypeScript
import { Component, OnInit } from '@angular/core'
|
|
|
|
@Component({
|
|
selector: 'app-home',
|
|
templateUrl: './home.component.html',
|
|
styleUrls: ['./home.component.sass']
|
|
})
|
|
export class HomeComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() { }
|
|
|
|
}
|