Created
April 1, 2020 17:00
-
-
Save kevinchisholm/0469ae9d683df85315ba0339b58fc724 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 } from '@angular/core'; | |
@Component({ | |
selector: 'my-test-item', | |
templateUrl: './test-item.component.html', | |
styleUrls: ['./test-item.component.css'] | |
}) | |
export class TestItemComponent { | |
@Input() testProperty; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment