ఒక React Native ప్రాజెక్ట్ JavaScript/TypeScript కోడ్ ఆధారంగా స్థానిక 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)
