import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; export default function App() { return ( ✅ WalletTracker fonctionne ! Si vous voyez ce message, l'app charge correctement. ); } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#F8F9FA' }, text: { fontSize: 24, fontWeight: 'bold', color: '#333', marginBottom: 16 }, subtext: { fontSize: 16, color: '#666', textAlign: 'center', paddingHorizontal: 32 } });