├── src # Application source code
│ ├── assets # Assets for images
│ ├── components # Reusable Components (components with actions and reducer)
│ ├── Layouts # Pages Layouts (Pure function components)
│ ├── styles # Application-wide styles (generally settings)
│ │ ├── app.scss
│ ├── utils # Utility func files
│ │ ├── store # Create and instrument redux store
│ │ └── devtools.js # Configuration for redux devtools
│ └─── main.js # Application bootstrap and rendering
└── tests # Tests with mocha with Enzyme