Files
Unify/application/demo/list/header/news.list.header.js

26 lines
514 B
JavaScript
Raw Permalink Normal View History

2025-12-25 11:16:59 +01:00
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();
}