Я хочу интегрировать сторожевой инструмент для реагирования на собственный аварийный отчет проекта, поэтому ниже приведен мой код
import { AppRegistry } from 'react-native';
import App from './App';
import { Sentry,SentryLog } from 'react-native-sentry';
import Raven from 'raven-js';
Raven
.config('https://****@sentry.io/1196569', {
logLevel: SentryLog.Debug,
})
.install();
try {
//doSomething(a[0])
} catch(e) {
Raven.captureException(e)
}
AppRegistry.registerComponent('RNCrashReport', () => App);
App.js
import React, { Component } from 'react';
import {
Platform,
StyleSheet,
View
} from 'react-native';
type Props = {};
export default class App extends Component<Props> {
render() {
return (
<View style={styles.container}>
<Text>{Hello}</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});
В моем App.js я не определяю текстовый компонент в реактивном пакете, так что это ошибка, но в моей панели мониторинга не исчезает, так что любая идея, чего мне не хватает для конфигурации