Helper function to build react jsx
``javascript
type ElementState = {
tagExpr: Object; // tag node
tagName: string; // raw string tag name
args: Array
require("babel-helper-builder-react-jsx")({
pre: function (state: ElementState) {
// called before building the element
},
post: function (state: ElementState) {
// called after building the element
}
});
``