Запитання 5
How should you design the architecture of a large-scale React Native app?
Варіанти відповідей
Use a feature-based folder structure with clear boundaries and public APIs, enforcing import restrictions and central navigation management.
Organize files by component type (e.g., all buttons in one folder, all screens in another) for easier access.
Put all shared state in a global store accessible by every feature without restrictions.
Allow features to import internal logic from other features freely to speed development.