You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add Replay Custom Masking for iOS, Android and Web ([#4224](https://github.com/getsentry/sentry-react-native/pull/4224), [#4265](https://github.com/getsentry/sentry-react-native/pull/4265), [#4272](https://github.com/getsentry/sentry-react-native/pull/4272), [#4314](https://github.com/getsentry/sentry-react-native/pull/4314))
58
+
59
+
```jsx
60
+
import*asSentryfrom'@sentry/react-native';
61
+
62
+
constExample= () => {
63
+
return (
64
+
<View>
65
+
<Sentry.Mask>
66
+
<Text>${"All children of Sentry.Mask will be masked."}</Text>
67
+
</Sentry.Mask>
68
+
<Sentry.Unmask>
69
+
<Text>${"Only direct children of Sentry.Unmask will be unmasked."}</Text>
0 commit comments