Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/singleware/jsx
- Owner: Singleware
- License: mit
- Created: 2018-07-22T12:44:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-07T13:42:27.000Z (over 4 years ago)
- Last Synced: 2024-10-31T18:13:27.600Z (15 days ago)
- Topics: browser, dom, javascript, jsx, singleware, typescript
- Language: JavaScript
- Size: 43.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 = (
);
```> 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)