React Native Components Priority: P0 (CRITICAL) Implementation Guidelines - Function Components Only : Use hooks. No class components. - Container/Presentational : Separate logic (hooks, data fetching) from UI (JSX, styling). - Composition : Use prop. Prefer composition over prop drilling. - Props : TypeScript interfaces. Destructure in params. - File Size : Keep components < 250 lines. Split if larger. - One Component Per File : Named exports for components. - Naming : for components. for hooks. - Imports : Group - React → External → Internal → Styles. - Platform Components : Use built-in (…