react-native-navigation
Version:
React Native Navigation - truly native navigation for iOS and Android
11 lines (10 loc) • 376 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AppRegistryService = void 0;
const react_native_1 = require("react-native");
class AppRegistryService {
registerComponent(appKey, getComponentFunc) {
react_native_1.AppRegistry.registerComponent(appKey, getComponentFunc);
}
}
exports.AppRegistryService = AppRegistryService;