react-native-navigation的迁移库

AppRegistryService.ts 240B

12345678
  1. import { ComponentProvider, AppRegistry } from 'react-native';
  2. export class AppRegistryService {
  3. registerComponent(appKey: string, getComponentFunc: ComponentProvider) {
  4. AppRegistry.registerComponent(appKey, getComponentFunc);
  5. }
  6. }