UNPKG

lupine.web

Version:

lupine.web is a extremely fast, small size and lightweight frontend framework, using React TSX syntax.

15 lines (12 loc) 283 B
/** * JSX.Element factory used by Typescript's JSX transform * @param type * @param props */ function jsx(type, props) { return { type, props }; } function Fragment(props) { return { type: 'Fragment', props }; } export { jsx as jsx, jsx as jsxs, jsx as jsxDEV, Fragment };