UNPKG

aroma-jsx-engine

Version:

A lightweight and flexible JSX/TSX engine for rendering React components in Node.js applications. Designed to work seamlessly with the [`aroma.js`](https://www.npmjs.com/package/aroma.js) framework, this package allows you to compile and render JSX/TSX co

9 lines (8 loc) 217 B
const { compile } = require('./jsxCompiler'); const { render } = require('./jsxRenderer'); const {loadFromFile} = require('./loadJSXFromFile'); module.exports = { compile, render, loadFromFile, };