1 2 3 4 5 6 7 8 9
const global_sheets = []; export function add_css(sheets) { global_sheets.push(...sheets); } export function css() { return global_sheets; }