File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed
plugins/node/instrumentation-react-native-navigation/src Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- import { forwardRef , ReactNode } from 'react' ;
16+ import React , { forwardRef , ReactNode } from 'react' ;
1717import { TracerProvider } from '@opentelemetry/api' ;
1818
1919import useTracerRef from '../utils/hooks/useTracerRef' ;
@@ -44,5 +44,5 @@ const NativeNavigationTracker = forwardRef<
4444} ) ;
4545
4646NativeNavigationTracker . displayName = 'NativeNavigationTracker' ;
47- export default NativeNavigationTracker ;
47+ export { NativeNavigationTracker } ;
4848export type { NativeNavigationTrackerRef } ;
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- import { forwardRef , ReactNode } from 'react' ;
16+ import React , { forwardRef , ReactNode } from 'react' ;
1717import { TracerProvider } from '@opentelemetry/api' ;
1818
1919import useTracerRef from '../utils/hooks/useTracerRef' ;
@@ -43,5 +43,5 @@ const NavigationTracker = forwardRef<
4343
4444NavigationTracker . displayName = 'NavigationTracker' ;
4545
46- export default NavigationTracker ;
46+ export { NavigationTracker } ;
4747export type { NavigationTrackerRef } ;
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- import NativeNavigationTracker from './components/NativeNavigationTracker' ;
17- import NavigationTracker from './components/NavigationTracker' ;
18-
19- export { NativeNavigationTracker , NavigationTracker } ;
16+ export * from './components/NativeNavigationTracker' ;
17+ export * from './components/NavigationTracker' ;
You can’t perform that action at this time.
0 commit comments