Skip to content

Instantly share code, notes, and snippets.

@kevinchisholm
Created April 1, 2020 17:07
Show Gist options
  • Save kevinchisholm/05d1fdcc5443a2a7a5c36fb71f5ff987 to your computer and use it in GitHub Desktop.
Save kevinchisholm/05d1fdcc5443a2a7a5c36fb71f5ff987 to your computer and use it in GitHub Desktop.
import { Component, Input, Output, EventEmitter } from '@angular/core';
@Component({
selector: 'my-test-item',
templateUrl: './test-item.component.html',
styleUrls: ['./test-item.component.css']
})
export class TestItemComponent {
@Input() testProperty;
@Output() delete = new EventEmitter();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment