JSX expressions are compiled to calls of JSX(tag,atts,kids) function. That function can be redefined enabling
different libraries to use JSX in the way they want, here is an example of using JSX with PReact:
import { h, render, Component } from 'preact';
JSX = h; // let's use PReact::h() as a driver of JSX expressions
So in Sciter this works out of the box:
JSX expressions are compiled to calls of JSX(tag,atts,kids) function. That function can be redefined enabling different libraries to use JSX in the way they want, here is an example of using JSX with PReact: See https://gitlab.com/sciter-engine/sciter-js-sdk/-/blob/main/s...