26 lines
514 B
JavaScript
26 lines
514 B
JavaScript
|
|
|
|
import news from '../../news.js';
|
|
|
|
import body from './news.list.header.body.js';
|
|
|
|
import title from './news.list.header.title.js';
|
|
|
|
import price from './news.list.header.price.js';
|
|
|
|
import actions from './news.list.header.actions.js';
|
|
|
|
import gridViewRow from '/elements/gridView/gridView.header.row.js';
|
|
|
|
|
|
export default class newsListHeader extends news, gridViewRow {
|
|
|
|
body = new body();
|
|
|
|
title = new title();
|
|
|
|
price = new price();
|
|
|
|
actions = new actions();
|
|
|
|
} |