(opts?: IHTMLElementOption, ...children: HTMLElement[])
| 28 | } |
| 29 | |
| 30 | export function $div(opts?: IHTMLElementOption, ...children: HTMLElement[]): HTMLElement { |
| 31 | return createElement('div', opts, ...children) |
| 32 | } |
| 33 | |
| 34 | export function $span(opts?: IHTMLElementOption, ...children: HTMLElement[]): HTMLElement { |
| 35 | return createElement('span', opts, ...children) |
no test coverage detected