Skip to content

Commit 594dde3

Browse files
committed
Fix import issues
1 parent 4ad0eb8 commit 594dde3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/ProgressViewIOS.ios.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import * as React from 'react';
1414
import {StyleSheet} from 'react-native';
1515

16-
import RNCProgressViewNativeComponent from 'RNCProgressViewNativeComponent';
16+
import RNCProgressViewNativeComponent from './RNCProgressViewNativeComponent';
1717

1818
import type {ImageSource} from 'react-native/Libraries/Image/ImageSource';
1919
import type {ColorValue} from 'react-native/Libraries/StyleSheet/StyleSheetTypes';
@@ -73,7 +73,7 @@ const styles = StyleSheet.create({
7373
},
7474
});
7575

76-
const ProgressViewIOSWithRef = forwardRef(ProgressViewIOS);
76+
const ProgressViewIOSWithRef = React.forwardRef(ProgressViewIOS);
7777

7878
/* $FlowFixMe(>=0.89.0 site=react_native_ios_fb) This comment suppresses an
7979
* error found when Flow v0.89 was deployed. To see the error, delete this

0 commit comments

Comments
 (0)