Skip to content

Instantly share code, notes, and snippets.

@arturovt
Created June 6, 2019 23:26
Show Gist options
  • Select an option

  • Save arturovt/5c58a3ca7e6ec461b8acc7f930a578c0 to your computer and use it in GitHub Desktop.

Select an option

Save arturovt/5c58a3ca7e6ec461b8acc7f930a578c0 to your computer and use it in GitHub Desktop.
import { Component, ChangeDetectionStrategy } from '@angular/core';
@Component({
selector: 'app-button',
templateUrl: './button.component.html',
styleUrls: ['./button.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class ButtonComponent {
@Input()
public type: string;
@Input()
public color: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment