Blame view

src/app/dummy/dummy.component.ts 298 Bytes
522b64d0   Arsisakarn Srilatanart   ทำให้ parent comp...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-dummy',
  templateUrl: './dummy.component.html',
  styleUrls: ['./dummy.component.css']
})
export class DummyComponent implements OnInit {

  constructor() { }

  ngOnInit() {
    console.log('dummy loaded');
  }

}