Erster Docker-Stand

This commit is contained in:
Ali
2026-02-20 16:06:40 +09:00
commit f31e2e8ed3
8818 changed files with 1605323 additions and 0 deletions

19
_node_modules/hono/dist/jsx/dom/jsx-dev-runtime.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
// src/jsx/dom/jsx-dev-runtime.ts
import * as intrinsicElementTags from "./intrinsic-element/components.js";
var jsxDEV = (tag, props, key) => {
if (typeof tag === "string" && intrinsicElementTags[tag]) {
tag = intrinsicElementTags[tag];
}
return {
tag,
type: tag,
props,
key,
ref: props.ref
};
};
var Fragment = (props) => jsxDEV("", props, void 0);
export {
Fragment,
jsxDEV
};