File Structure
Understanding File Structure
Starting with a good folder structure, especially when working on large applications is very important for the developer experience,
Top-Level Directory Dtructure
Application File Structure
The starterKit use a pattern that group files by domain where all files corresponding to a business domain are in the same directory. Here is the example of SignIn page file structure:
Test File Structure
The automated tests are placed in the tests directory of each screen / component.
Unit and integration tests are placed directly in the tests folder
Snapshots Jest tests (rendering tests of a screen / component against a snapshot) are placed in the snapshots subfolder
Last updated
Was this helpful?