]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/buttons/edit-button.component.ts
Add reason when banning a user
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / buttons / edit-button.component.ts
1 import { Component, Input } from '@angular/core'
2
3 @Component({
4 selector: 'my-edit-button',
5 styleUrls: [ './button.component.scss' ],
6 templateUrl: './edit-button.component.html'
7 })
8
9 export class EditButtonComponent {
10 @Input() label: string
11 @Input() routerLink = []
12 }