forked from solidjs/solid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
45 lines (43 loc) · 718 Bytes
/
index.ts
File metadata and controls
45 lines (43 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { createHTML } from "./lit.js";
import type { HTMLTag } from "./lit.js";
import {
effect,
style,
insert,
untrack,
spread,
createComponent,
delegateEvents,
className,
dynamicProperty,
mergeProps,
setAttribute,
setAttributeNS,
addEventListener,
ChildProperties,
DelegatedEvents,
SVGElements,
MathMLElements,
Namespaces,
} from "@solidjs/web";
const html: HTMLTag = createHTML({
effect,
style,
insert,
untrack,
spread,
createComponent,
delegateEvents,
className,
mergeProps,
dynamicProperty,
setAttribute,
setAttributeNS,
addEventListener,
ChildProperties,
DelegatedEvents,
SVGElements,
MathMLElements,
Namespaces,
});
export default html;