Skip to content

Commit 46c667b

Browse files
committed
.
1 parent d4c46dd commit 46c667b

File tree

1 file changed

+3
-3
lines changed
  • packages/react-native/Libraries/Components/View

1 file changed

+3
-3
lines changed

packages/react-native/Libraries/Components/View/View.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import {use} from 'react';
2323
*
2424
* @see https://reactnative.dev/docs/view
2525
*/
26-
const ViewImpl: component(
26+
const View: component(
2727
ref?: React.RefSetter<React.ElementRef<typeof ViewNativeComponent>>,
2828
...props: ViewProps
2929
) = ({
@@ -220,5 +220,5 @@ const ViewImpl: component(
220220
return actualView;
221221
};
222222

223-
ViewImpl.displayName = 'View';
224-
export default ViewImpl;
223+
View.displayName = 'View';
224+
export default View;

0 commit comments

Comments
 (0)