1 2$css(` 3 4`); 5 6const defaults = { 7 label: "button", 8 action: () => {} 9}; 10 11export async function main(target, spec) { 12 spec = { ...defaults, ...spec }; 13 14 // todo 15} 16 17