Skip to main content

JSX

We support JSX in our JS server, but we are not running React! This means there are no hooks and no rendering life cycle.

Note: This is still an experimental API

To set up your JS server so you can use JSX, you should install our TypeScript preset:

npm install @rise-tools/preset-typescript

and then, reference it from your tsconfig.json:

{
"preset": "@rise-tools/preset-typescript",
}