15 lines
355 B
JavaScript

import { createElement } from "../../ui";
function createBox(title, functions) {
const container = createElement('div', 'comm');
const header = createElement('div', 'title-bar',
title,
createElement('div', 'title-functions', ...functions)
);
container.appendChild(header);
return container;
}
export {
createBox
}