Skip to content

Export NewAppScreen from the root #50801

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
3 changes: 3 additions & 0 deletions packages/react-native/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
},
Expand Down
2 changes: 2 additions & 0 deletions packages/react-native/index.js.flow
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading