Understand folder structure of the project and what everything contains.
Before checking folder structure it is better you know some stuff related to folder structure.
assets
: folder contains core files of project as photos and core styles.components
: folder contains custom reusable components to reduce code duplication.data
: folder contains the authentication files which are just mock datahelpers
: folder contains some of the helpers function for various uses, like creating Cart
, CartItem
, Product
and Category
.types
: folder contains the app’s types to reuse them in different components in the project and to improve type checking.views
: folder contains project’s pages, like Home
, Categories
, etc,…