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.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) );