19 lines
338 B
TypeScript
19 lines
338 B
TypeScript
import { Component, Input} from '@angular/core';
|
|
import {FormControl} from '@angular/forms';
|
|
|
|
@Component({
|
|
selector: 'pdb-limit-by',
|
|
templateUrl: './limit-by.component.html',
|
|
styleUrls: ['./limit-by.component.scss']
|
|
})
|
|
export class LimitByComponent {
|
|
|
|
limitBy: string = "NO_LIMIT";
|
|
|
|
limit = 10;
|
|
|
|
constructor() {
|
|
|
|
}
|
|
}
|