babel-plugin-transform-react-constant-elements
v6.23.0
Published
Treat React JSX elements as value types and hoist them to the highest scope
Downloads
388,140
Keywords
Readme
babel-plugin-transform-react-constant-elements
Treat React JSX elements as value types and hoist them to the highest scope
Installation
$ npm install babel-plugin-transform-react-constant-elements
Usage
Via .babelrc
(Recommended)
.babelrc
{
"plugins": ["transform-react-constant-elements"]
}
Via CLI
$ babel --plugins transform-react-constant-elements script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["transform-react-constant-elements"]
});