Skip to content

Latest commit

 

History

History
52 lines (50 loc) · 1 KB

README.md

File metadata and controls

52 lines (50 loc) · 1 KB

FRONTEND-GUIDELINES

Project directory structure

my-app
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
│   ├── favicon.ico
│   ├── index.html
│   ├── manifest.json
|   └── local/en/translations.json
└── src
    ├── actions
    │   ├── app-actions.js
    |   └── auth-actions.js
    |
    ├── assets
    |   ├── fonts
    |   └── images
    |
    ├── components
    |   └── auth-module
    |
    ├── contants
    |   └── action-type.js
    |
    ├── helpers
    |   └── auth-helpers.js
    |
    ├── i18n
    |   └── config.js
    |
    ├── reducer
    |   └── root.js
    |
    ├── routes
    |   └── routes.js
    |
    ├── store
    |   └── store.js
    |
    ├── styles
    |   └── app.scss
    |
    └── utils
        ├── app-api-utils.js
        └── string-utils.js