You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
311 B
TypeScript
18 lines
311 B
TypeScript
|
6 years ago
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-mo-item-history',
|
||
|
|
templateUrl: './mo-item-history.component.html',
|
||
|
|
styleUrls: ['./mo-item-history.component.scss'],
|
||
|
|
})
|
||
|
|
export class MoItemHistoryComponent implements OnInit {
|
||
|
|
|
||
|
|
constructor() { }
|
||
|
|
|
||
|
|
ngOnInit() {
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|