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)
