ultimate-comparisons/ultimate-comparison-BASE

View on GitHub
src/app/components/polymer/paper-button/paper-button.component.ts

Summary

Maintainability
A
1 hr
Test Coverage
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';

@Component({
    selector: 'pbutton',
    templateUrl: './paper-button.component.html',
    styleUrls: ['./paper-button.component.css'],
    changeDetection: ChangeDetectionStrategy.OnPush
})
export class PaperButtonComponent {
    @Input() text: string;
}