We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ebf9f7 commit 7d40e1cCopy full SHA for 7d40e1c
packages/react-native/Libraries/Components/View/View.js
@@ -23,7 +23,7 @@ import {use} from 'react';
23
*
24
* @see https://reactnative.dev/docs/view
25
*/
26
-const ViewImpl: component(
+const View: component(
27
ref?: React.RefSetter<React.ElementRef<typeof ViewNativeComponent>>,
28
...props: ViewProps
29
) = ({
@@ -220,5 +220,5 @@ const ViewImpl: component(
220
return actualView;
221
};
222
223
-ViewImpl.displayName = 'View';
224
-export default ViewImpl;
+View.displayName = 'View';
+export default View;
0 commit comments