2018-11-12 14:32:28 +08:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-chut',
|
|
|
|
|
templateUrl: './chut.component.html',
|
|
|
|
|
styleUrls: ['./chut.component.scss']
|
|
|
|
|
})
|
|
|
|
|
export class ChutComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
constructor() { }
|
|
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|