Skip to content

Instantly share code, notes, and snippets.

@kevinchisholm
Created April 1, 2020 17:00
Show Gist options
  • Save kevinchisholm/0469ae9d683df85315ba0339b58fc724 to your computer and use it in GitHub Desktop.
Save kevinchisholm/0469ae9d683df85315ba0339b58fc724 to your computer and use it in GitHub Desktop.
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