This plugin is a follow up of this post and it can be used together with @babel/plugin-transform-react-jsx.
A huge thanks to Nicolò Ribaudo for helping out.
{
"plugins": [
["@babel/plugin-transform-react-jsx"],
["module:@ungap/plugin-transform-hinted-jsx"]
]
}
npm i --save-dev @babel/cli
npm i --save-dev @babel/core
npm i --save-dev @babel/plugin-transform-react-jsx
npm i --save-dev @ungap/plugin-transform-hinted-jsx
This produces a slightly different JSX transform.
const div = (
<div>
<p className="static" runtime={'prop'}/>
{<p />}
</div>
);
// becomes
const div = React.createElement``(
'div',
null,
React.createElement(
'p',
{
className: 'static',
runtime: React.interpolation('prop')
}
),
React.interpolation(
React.createElement``(
'p',
null
)
)
);