Blame view

src/app/invoice/invoice.component.ts 273 Bytes
2ce2db7f   Arsisakarn Srilatanart   แยก layout สำหรับ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Component, OnInit } from '@angular/core';

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

  constructor() { }

  ngOnInit() {
  }

}