We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a1cc17 commit 7e1f3d5Copy full SHA for 7e1f3d5
js/MaskedView.web.js
@@ -0,0 +1,8 @@
1
+import React from 'react';
2
+import { View } from 'react-native';
3
+
4
+function MaskedView({ maskElement, ...props }) {
5
+ return React.createElement(View, props, maskElement);
6
+}
7
8
+export default MaskedView;
0 commit comments