social components
inlay-proto.up.railway.app/
atproto
components
sdui
1import type { l } from "@atproto/lex";
2import type { Element, LexiconComponent } from "./element.ts";
3import { jsx, jsxs, Fragment } from "./jsx-runtime.ts";
4
5export { Fragment };
6
7export function jsxDEV(
8 type: LexiconComponent,
9 props: l.LexMap | null,
10 key?: string,
11 isStaticChildren?: boolean
12): Element {
13 return isStaticChildren ? jsxs(type, props, key) : jsx(type, props, key);
14}