one
Version:
One is a new React Framework that makes Vite serve both native and web.
10 lines (9 loc) • 324 B
JavaScript
import { lazy as reactLazy } from "react";
import { loadWithRetry } from "./utils/dynamicImport.native.js";
function lazyWithRetry(loader, options) {
return /* @__PURE__ */reactLazy(function () {
return loadWithRetry(loader, options);
});
}
export { lazyWithRetry };
//# sourceMappingURL=lazyWithRetry.native.js.map