michangarrito/apps/mcp-server/node_modules/hono/dist/jsx/jsx-dev-runtime.js
rckrdmrd 97f407c661 [MIGRATION-V2] feat: Migrar michangarrito a estructura v2
- Prefijo v2: MCH
- TRACEABILITY-MASTER.yml creado
- Listo para integracion como submodulo

Workspace: v2.0.0 | SIMCO: v4.0.0
2026-01-10 11:28:54 -06:00

19 lines
444 B
JavaScript

// src/jsx/jsx-dev-runtime.ts
import { jsxFn } from "./base.js";
import { Fragment } from "./base.js";
function jsxDEV(tag, props, key) {
let node;
if (!props || !("children" in props)) {
node = jsxFn(tag, props, []);
} else {
const children = props.children;
node = Array.isArray(children) ? jsxFn(tag, props, children) : jsxFn(tag, props, [children]);
}
node.key = key;
return node;
}
export {
Fragment,
jsxDEV
};