Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 868 Bytes

File metadata and controls

19 lines (17 loc) · 868 Bytes

Basic Structure of a React Native app with Expo + NativeWind

🏆 Folder structure

  📂 src                // Root directory
  |--📁 @types          // Component types
  |--📁 app             // Application Pages
  |--📁 assets          // Stores static files like images and fonts
  |--📂 components      // Reusable components
  |  |--📁 layout       // Application Layout Components
  |--📁 data            // Static data or data models
  |--📁 features        // Specific modules by grouping components and logic
  |--📁 hooks           // Custom hooks
  |--📁 lib             // External libraries, utilities or integrations
  |--📁 services        // API calls, external services or integrations
  |--📁 store           // Manage global state
  |--📁 utils           // Utility and helper functions for general use