// T17 stub — full implementation lands in T18. // For now: brand only, so the shell renders without errors. import { el, mount } from '../dom.js'; export function renderSidebar(root) { mount(root, el('div', { class: 'sb-section' }, el('div', { class: 'sb-title' }, 'Void'), el('div', { class: 'sb-item muted' }, 'Sidebar loads in T18') ) ); }