/** * {} * @author yutent * @date 2023/06/07 18:41:20 */ function html(strs, ...vals) { let output = '' for (let it of strs) { output += it + (vals.shift() || '') } return output } export function render({ title = 'Most Used Languages' }) { return html` ${title} ` }