UNPKG

@yoroi/common

Version:

The Common package of Yoroi SDK

13 lines 422 B
import * as React from 'react'; import { Text, View } from 'react-native'; export const SuspenseBoundary = _ref => { let { children } = _ref; return /*#__PURE__*/React.createElement(React.Suspense, { fallback: /*#__PURE__*/React.createElement(View, { testID: "suspending" }, /*#__PURE__*/React.createElement(Text, null, "suspending")) }, children); }; //# sourceMappingURL=SuspenseBoundary.js.map