@hyext-beyond/hy-ui-native
Version:
A native lib polyfill for huya miniapp
10 lines • 352 B
JavaScript
import { requireNativeComponent } from 'react-native';
var nativeComponents = {};
export var hyRequireNativeComponent = function hyRequireNativeComponent(viewName) {
var component = nativeComponents[viewName];
if (!component) {
component = requireNativeComponent(viewName);
nativeComponents[viewName] = component;
}
return component;
};