(href: string)
| 7 | export const stop = (ev?: Event) => ev?.stopPropagation(); |
| 8 | |
| 9 | export const loadStyle = async (href: string) => { |
| 10 | const link = document.createElement('link'); |
| 11 | link.href = href; |
| 12 | link.rel = 'stylesheet'; |
| 13 | document.head.appendChild(link); |
| 14 | }; |
| 15 | |
| 16 | type ScriptToLoad = { id: string; src: string }; |
| 17 |