We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
html
jsx
1 parent 598c31a commit 21a0dd0Copy full SHA for 21a0dd0
src/jsx-tag.ts
@@ -31,6 +31,9 @@ export function jsx(
31
return build(element);
32
}
33
34
+/** Alias for `jsx` template tag. */
35
+export const html = jsx;
36
+
37
// Type definitions for a bare-bones AST
38
interface ParseElement {
39
type: "element";
src/standalone.ts
@@ -1,2 +1,2 @@
1
export * from "./crank.js";
2
-export {jsx} from "./jsx-tag.js";
+export * from "./jsx-tag.js";
0 commit comments