babel-plugin-transform-jsx-namespace-to-ref
Example
In
Component { return <myDiv:div /> }
Out
Component { return <div ref= thismyDiv = myDiv />; }
Installation
npm install --save-dev babel-plugin-transform-jsx-namespace-to-ref
Usage
Examples for plugin options
asThisProperty option
The default option (not necessary)
To specify the path for element
.babelrc
In
Component { return <myDiv:div /> }
Out
Component { return <div ref= thispropertymyDiv = myDiv />; }
asThisMethod option
.babelrc
In
Component { return <myDiv:div /> }
Out
Component { return <div ref= this />; }
legacy option
.babelrc
In
Component { return <myDiv:div /> }
Out
Component { return <div ref="myDiv" />; }