Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/singleware/jsx

JSX package.
https://github.com/singleware/jsx

browser dom javascript jsx singleware typescript

Last synced: 4 days ago
JSON representation

JSX package.

Awesome Lists containing this project

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

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

## Usage

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

const block = (


Some test with a
test link.

);
```

> You can use with node.js or browser.

## Install

Using npm:

```sh
npm i @singleware/jsx
```

## License

[MIT © Silas B. Domingos](https://balmante.eti.br)