@cascateer/core 2.0.3 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/jsx-runtime.ts +4 -0
package/package.json
CHANGED
package/src/jsx-runtime.ts
CHANGED
|
@@ -190,3 +190,7 @@ export const createElement = (
|
|
|
190
190
|
|
|
191
191
|
export const createFragment = ({ children }: JSX.IntrinsicAttributes) =>
|
|
192
192
|
new ObservableFragment(children);
|
|
193
|
+
|
|
194
|
+
export const jsx = createElement;
|
|
195
|
+
export const jsxs = createElement;
|
|
196
|
+
export const Fragment = createFragment;
|