blob: ea552663ac35815a63b894e11484ea034b8287bc (
plain) (
tree)
|
|
import { Component, Input } from '@angular/core'
@Component({
selector: 'my-edit-button',
styleUrls: [ './button.component.scss' ],
templateUrl: './edit-button.component.html'
})
export class EditButtonComponent {
@Input() label: string
@Input() routerLink: any = []
}
|