16 lines
265 B
TypeScript
16 lines
265 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-items',
|
|
templateUrl: './items.component.html',
|
|
styleUrls: ['./items.component.css']
|
|
})
|
|
export class ItemsComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|