Better admin tables
[oweals/peertube.git] / client / src / app / shared / misc / 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() routerLink = []
11 }