Nicolò Ribaudo 8dacf85859
Lazily initialize and cache constant JSX elements (#12967)
Co-authored-by: Justin Ridgewell <justin@ridgewell.name>
2021-03-06 17:33:43 +01:00

17 lines
347 B
JavaScript

var _Contact;
const title = "Neem contact op";
function action() {
return _action.apply(this, arguments);
}
function _action() {
_action = babelHelpers.asyncToGenerator(function* () {
return _Contact || (_Contact = /*#__PURE__*/React.createElement(Contact, {
title: title
}));
});
return _action.apply(this, arguments);
}