import { div, parse, span } from './main.js'; export function header(title) { return div({id: 'header'}, span({id: 'logo', class: 'accent'}, parse("Wrapper") ), span({id: 'title'}, parse(title) ), ) }