diff --git a/packages/react-native/Libraries/__tests__/__snapshots__/public-api-test.js.snap b/packages/react-native/Libraries/__tests__/__snapshots__/public-api-test.js.snap index d64601d1560022..a9b8f559b07da4 100644 --- a/packages/react-native/Libraries/__tests__/__snapshots__/public-api-test.js.snap +++ b/packages/react-native/Libraries/__tests__/__snapshots__/public-api-test.js.snap @@ -9082,6 +9082,7 @@ export type { VirtualizedSectionListProps, } from \\"./Libraries/Lists/VirtualizedSectionList\\"; export { default as VirtualizedSectionList } from \\"./Libraries/Lists/VirtualizedSectionList\\"; +export * as NewAppScreen from \\"./Libraries/NewAppScreen\\"; export { default as AccessibilityInfo } from \\"./Libraries/Components/AccessibilityInfo/AccessibilityInfo\\"; export type { ActionSheetIOSOptions, diff --git a/packages/react-native/index.js b/packages/react-native/index.js index 1668f74754e6de..89808cf5f92d6e 100644 --- a/packages/react-native/index.js +++ b/packages/react-native/index.js @@ -238,6 +238,9 @@ module.exports = { get Networking() { return require('./Libraries/Network/RCTNetworking').default; }, + get NewAppScreen() { + return require('./Libraries/NewAppScreen'); + }, get PanResponder() { return require('./Libraries/Interaction/PanResponder').default; }, diff --git a/packages/react-native/index.js.flow b/packages/react-native/index.js.flow index b719e1d9222184..165218d5f3349f 100644 --- a/packages/react-native/index.js.flow +++ b/packages/react-native/index.js.flow @@ -318,6 +318,8 @@ export {default as NativeEventEmitter} from './Libraries/EventEmitter/NativeEven export {default as NativeModules} from './Libraries/BatchedBridge/NativeModules'; export {default as Networking} from './Libraries/Network/RCTNetworking'; +export * as NewAppScreen from './Libraries/NewAppScreen'; + export type { PanResponderCallbacks, PanResponderGestureState,