RN: Change Internal Imports to Relative Paths

Summary:
Fixes all internal import statements directly referencing the `react-native` package to instead use relative paths.

Changelog:
[Internal]

Reviewed By: christophpurrer

Differential Revision: D39831223

fbshipit-source-id: 510123e5fc8f6845f96d1b55c67e0e59cb401beb
This commit is contained in:
Tim Yung
2022-09-27 09:22:58 -07:00
committed by Facebook GitHub Bot
parent 908571de2f
commit 7c08d07115
32 changed files with 78 additions and 65 deletions
@@ -10,7 +10,7 @@
import * as React from 'react';
import codegenNativeCommands from 'react-native/Libraries/Utilities/codegenNativeCommands';
import codegenNativeCommands from '../../Utilities/codegenNativeCommands';
import codegenNativeComponent from '../../Utilities/codegenNativeComponent';
import type {HostComponent} from '../../Renderer/shims/ReactNativeTypes';