9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
import React from "react";
|
|
import { View } from "react-native";
|
|
|
|
function MaskedView({ maskElement, ...props }) {
|
|
return React.createElement(View, props, maskElement);
|
|
}
|
|
|
|
export default MaskedView;
|