add limit by

This commit is contained in:
2019-10-19 08:48:21 +02:00
parent a3099d4981
commit 24bf7c98e3
15 changed files with 286 additions and 110 deletions

View File

@@ -0,0 +1,18 @@
import { Component, OnInit, Input} from '@angular/core';
@Component({
selector: 'pdb-limit-by',
templateUrl: './limit-by.component.html',
styleUrls: ['./limit-by.component.scss']
})
export class LimitByComponent implements OnInit {
@Input() limit: number;
@Input() limitBy: string;
constructor() { }
ngOnInit() {
}
}