File Structure
Understanding File Structure
Top-Level Directory Dtructure
.
├── api # Contains the fake backend Api mock data and config
├── assets # Contains app assets (images, icons and custom fonts file)
├── config # Dev tools configuration
├── docs # application documentation
└── src # Application main Source Code directoryApplication File Structure
.
├── ...
├── SignIn # Contains all files related to SignIn page UI and logic
│ ├── __tests__ # Unit tests and integration of the display the screen, its components and behavior
│ ├── behavior.js # Screen behavior (actions and action creators ans reducers)
│ ├── index.js # Export default screen component
│ ├── SignIn.js # Main screen UI component
│ ├── selectors.js # Selectors from Redux State
│ └── styles # Styles used for displaying this scree
└── ...Test File Structure
Last updated