import { createElement, createRender } from "../../lib/skeleton/index.js"; import { CSS } from "../../helpers/loader.js"; export default async function(render) { const $page = createElement(`
`) render($page); } const css = ` .component_submenu { display: flex; justify-content: space-between; padding: 0 15px; } .component_submenu .action.left { margin-left: 2px; margin-right: 5px; } .component_submenu .action.right { float: right; margin-right: 10px; } .component_submenu .action.right button img { width: 16px; height: 16px; } .component_submenu .action.right button, .component_submenu .action.left button { background: var(--bg-color); border: 2px solid rgba(100, 100, 100, 0.05); padding: 5px 10px; } ` export async function OldOne(render) { const $page = createElement(` `); render($page); }