Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
sentry-react-native-6.16.0.tgz | 2025-06-24 | 4.2 MB | |
6.16.0 source code.tar.gz | 2025-06-24 | 6.7 MB | |
6.16.0 source code.zip | 2025-06-24 | 7.1 MB | |
README.md | 2025-06-24 | 1.0 kB | |
Totals: 4 Items | 18.0 MB | 0 |
Features
- Introducing
@sentry/react-native/playground
(#4916)
The new withSentryPlayground
component allows developers to verify
that the SDK is properly configured and reports errors as expected.
```jsx import * as Sentry from '@sentry/react-native'; import { withSentryPlayground } from '@sentry/react-native/playground';
function App() { return <View>...</View>; }
export default withSentryPlayground( Sentry.wrap(App) ); ```