UNPKG

@khulnasoft.com/dev-tools

Version:

KhulnaSoft Visual CMS Devtools

19 lines (17 loc) 232 B
export function jsx(type, props, key) { return { type, props, key, }; } export function jsxs(type, props, key, ...children) { return { type, props: { ...props, children, }, key, }; }