Created
April 1, 2020 17:07
-
-
Save kevinchisholm/05d1fdcc5443a2a7a5c36fb71f5ff987 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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