diff --git a/packages/react-native/ReactCommon/react/bridgeless/platform/ios/Core/RCTHostCreationHelpers.h b/packages/react-native/ReactCommon/react/bridgeless/platform/ios/Core/RCTHostCreationHelpers.h deleted file mode 100644 index da866c481a9..00000000000 --- a/packages/react-native/ReactCommon/react/bridgeless/platform/ios/Core/RCTHostCreationHelpers.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -#import "RCTHost.h" - -@class RCTHost; - -@protocol RCTHostDelegate; -@protocol RCTTurboModuleManagerDelegate; - -NS_ASSUME_NONNULL_BEGIN - -RCT_EXTERN_C_BEGIN - -RCTHost *RCTHostCreateDefault( - NSURL *bundleURL, - id hostDelegate, - id turboModuleManagerDelegate, - RCTHostJSEngineProvider jsEngineProvider); - -RCT_EXTERN_C_END - -NS_ASSUME_NONNULL_END diff --git a/packages/react-native/ReactCommon/react/bridgeless/platform/ios/Core/RCTHostCreationHelpers.mm b/packages/react-native/ReactCommon/react/bridgeless/platform/ios/Core/RCTHostCreationHelpers.mm deleted file mode 100644 index 42a299c9610..00000000000 --- a/packages/react-native/ReactCommon/react/bridgeless/platform/ios/Core/RCTHostCreationHelpers.mm +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import "RCTHostCreationHelpers.h" - -RCTHost *RCTHostCreateDefault( - NSURL *bundleURL, - id hostDelegate, - id turboModuleManagerDelegate, - RCTHostJSEngineProvider jsEngineProvider) -{ - return [[RCTHost alloc] initWithBundleURL:bundleURL - hostDelegate:hostDelegate - turboModuleManagerDelegate:turboModuleManagerDelegate - jsEngineProvider:jsEngineProvider]; -}