React Native प्रोजेक्टको संरचना JavaScript/TypeScript कोड, native iOS/Android प्रोजेक्ट र कन्फिगरेसन गरेर बनेको हुन्छ। संरचना र मुख्य फाइलहरू बुझ्नुले React Native अनुप्रयोग नेभिगेट गर्न र बनाउन मद्दत गर्छ।
संरचनाका मुख्य भागहरू
my-app/
App.js / App.tsx → the root component (app entry point)
src/ (or app/) → your JS/TS code (components, screens, etc.) — organize here
package.json → dependencies and scripts (npm/yarn) — like any JS project
node_modules/ → installed npm dependencies
ios/ → the native iOS project (Xcode) — for bare RN
android/ → the native Android project (Gradle) — for bare RN
index.js → registers the root component
app.json / app.config → app config (name, icon) — especially in Expo
(Expo projects hide ios/android; managed by Expo)
