Skip to content

Latest commit

 

History

History
 
 

babel-plugin-transform-react-jsx-compat

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

babel-plugin-transform-react-jsx-compat

Turn JSX into React Pre-0.12 function calls

Installation

$ npm install babel-plugin-transform-react-jsx-compat

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-react-jsx-compat"]
}

Via CLI

$ babel --plugins transform-react-jsx-compat script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-react-jsx-compat"]
});