update: add minimal3 frame

This commit is contained in:
2026-05-31 23:26:09 +02:00
parent fb293d840c
commit 3ec6654e9d
71 changed files with 1020 additions and 17291 deletions
@@ -0,0 +1,8 @@
import React from 'react';
import { View } from 'react-native';
function MaskedView({ maskElement, ...props }) {
return React.createElement(View, props, maskElement);
}
export default MaskedView;