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