Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Last active February 8, 2020 18:06
Show Gist options
  • Save andrewarosario/df53d84fda84d2faadbfd466657dfc93 to your computer and use it in GitHub Desktop.
Save andrewarosario/df53d84fda84d2faadbfd466657dfc93 to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-category',
templateUrl: './category.component.html',
styleUrls: ['./category.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class CategoryComponent {
@Input() category: CashflowCategory;
@Output() change = new EventEmitter<CashflowCategory>();
@Output() remove = new EventEmitter<CashflowCategory>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment