| Name | Last modified | Size | Description | |
|---|---|---|---|---|
| Parent Directory | - | |||
| lib/ | 2023-06-09 12:49 | - | ||
| package.json | 2023-06-09 12:49 | 1.2K | 7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك] | |
| README.md | 2016-10-17 22:44 | 369 | f12eb36 documentaiton updates [كارل مبارك] |
# babel-plugin-syntax-jsx
## Installation
```sh
$ npm install babel-plugin-syntax-jsx
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"plugins": ["syntax-jsx"]
}
```
### Via CLI
```sh
$ babel --plugins syntax-jsx script.js
```
### Via Node API
```javascript
require("babel-core").transform("code", {
plugins: ["syntax-jsx"]
});
```