@singleware/jsx

Singleware JSX package.

Usage no npm install needed!

<script type="module">
  import singlewareJsx from 'https://cdn.skypack.dev/@singleware/jsx';
</script>

README

JSX

This package provides some classes to help you create JSX statements in a easy way.

Configuration

Add the specified lines below into your tsconfig.json

{
  "compilerOptions": {
    "jsx": "react",
    "jsxFactory": "JSX.create"
  }
}

Usage

import * as JSX from '@singleware/jsx';

const block = (
  <div>
    <span>Some test with a</span>
    <a href="/test">test link.</a>
  </div>
);

You can use with node.js or browser.

Install

Using npm:

npm i @singleware/jsx

License

MIT © Silas B. Domingos