import type { l } from "@atproto/lex"; import type { Element, LexiconComponent } from "./element.ts"; import { jsx, jsxs, Fragment } from "./jsx-runtime.ts"; export { Fragment }; export function jsxDEV( type: LexiconComponent, props: l.LexMap | null, key?: string, isStaticChildren?: boolean ): Element { return isStaticChildren ? jsxs(type, props, key) : jsx(type, props, key); }