first commit

This commit is contained in:
NishantRajputRN
2026-04-16 15:23:13 +05:30
commit aa56e08ffd
523 changed files with 229267 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import 'react-native-reanimated';
// 1️⃣ MUST be first — install crypto polyfill
import { install } from 'react-native-quick-crypto';
install(); // Sets up global.crypto
// 2️⃣ Import random values polyfill (MUST come after install())
import 'react-native-get-random-values';
// 3️⃣ Core React Native + libraries
import 'react-native-gesture-handler';
// 4️⃣ App
import { AppRegistry } from 'react-native';
import App from './PerformicsSrc/src/screens/App';
import { name as appName } from './app.json';
// 5️⃣ Register the app
AppRegistry.registerComponent(appName, () => App);