8 lines
313 B
JavaScript
8 lines
313 B
JavaScript
|
import { createJSX } from './jsx/createJSX';
|
||
|
import { jsxSlot } from './jsx/jsxSlot';
|
||
|
import { jsxsSlot } from './jsx/jsxsSlot';
|
||
|
import { Runtime } from './utils/Runtime';
|
||
|
export { Fragment } from 'react';
|
||
|
export const jsx = createJSX(Runtime.jsx, jsxSlot);
|
||
|
export const jsxs = createJSX(Runtime.jsxs, jsxsSlot);
|