You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
477 B

import { Component, Input, Output, EventEmitter, OnInit } from '@angular/core';
import { Record } from './record';
@Component({
selector: 'app-record',
templateUrl: './record.component.html',
styleUrls: ['./record.component.less']
})
export class RecordComponent implements OnInit {
@Input() record: Record | null = null;
@Output() edit = new EventEmitter<Record>();
@Output() delete = new EventEmitter<Record>();
constructor() { }
ngOnInit(): void {
}
}