20 lines
356 B
JavaScript
20 lines
356 B
JavaScript
|
|
|
||
|
|
import pagination from './newsItemPage.pagination.js';
|
||
|
|
|
||
|
|
import limit from './newsItemPage.limit.js';
|
||
|
|
|
||
|
|
import label from '/elements/label.js';
|
||
|
|
|
||
|
|
export default class tableControl{
|
||
|
|
|
||
|
|
pageLabel = new label("Select page:");
|
||
|
|
|
||
|
|
pagination = new pagination();
|
||
|
|
|
||
|
|
limitLabel = new label("Select items per page:");
|
||
|
|
|
||
|
|
limit = new limit();
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|