first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
define(["require", "exports", "react"], function (require, exports, React) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.wrapPersona = void 0;
/**
* function to override the default onRender callbacks
*/
var wrapPersona = function (example, shouldWrapPersonaCoin) {
if (shouldWrapPersonaCoin === void 0) { shouldWrapPersonaCoin = false; }
return function (coinProps, defaultCoinRenderer) {
return shouldWrapPersonaCoin ? (React.createElement("span", { id: "persona-coin-container" }, defaultCoinRenderer(coinProps))) : (defaultCoinRenderer(coinProps));
};
};
exports.wrapPersona = wrapPersona;
});
//# sourceMappingURL=test-utils.js.map