0.1.0 • Published 1 year ago
esbuild-plugin-annotate-react v0.1.0
esbuild-plugin-annotate-react
An esbuild plugin that annotates React-rendered components with stable attributes to identify the source component.
Input:
// App.jsx
const MyComponent = () => {
return <div>Hello World</div>
}
Output:
const MyComponent = () => {
return React.createElement(
"div",
{ "data-component": "MyComponent" },
"Hello World"
);
}
0.1.0
1 year ago