|
|
@ -14,16 +14,16 @@ This project contains the components developed for a mobile app within the Water |
|
|
|
``` |
|
|
|
. |
|
|
|
├── LICENSE # License description file |
|
|
|
├── README.md |
|
|
|
└── src |
|
|
|
├── App.js |
|
|
|
├── app |
|
|
|
│ ├── assets |
|
|
|
│ ├── components |
|
|
|
│ ├── config |
|
|
|
│ ├── hooks |
|
|
|
│ ├── navigation |
|
|
|
│ └── screens |
|
|
|
├── README.md # Readme description file |
|
|
|
└── src # source files |
|
|
|
├── App.js # app initial file |
|
|
|
├── app # app custom folders and files |
|
|
|
│ ├── assets # assets folder (images and static) |
|
|
|
│ ├── components # basic components folder |
|
|
|
│ ├── config # common config files |
|
|
|
│ ├── hooks # custom hooks |
|
|
|
│ ├── navigation # navigation files and routes |
|
|
|
│ └── screens # screen files |
|
|
|
├── app.json |
|
|
|
├── babel.config.js |
|
|
|
├── package-lock.json |
|
|
|