Skip to content

Commit 7e1f3d5

Browse files
authored
Web stub (#70) (#175)
Co-authored-by: Michel Couillard <mcouillard@hortau.com>
1 parent 6a1cc17 commit 7e1f3d5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

js/MaskedView.web.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)