Structure
The folder structure of MateAdmin is following like that.

Build: All the Build files are available on this folder.

node_modules: It contains all the npm packages that is used on this projects.
public: Contains public files used on the projects like menifest file, index.html file, icon files.

src: Contains all the codes including js, less and the image files. It has some folders inside. They are:
- components: Reusable react components
- containers: Constains all the files of the react component of the project.
- settings: General config files.
- helpers: Utility codes for the projects.
- image: Images used in the project.
- reducers: Contains the functional code of redux.
- sagas: React sagas for handling async request.
- selectors: React selectors
- store: Redux Stores
- styles: Less code files.

package.json: Contains all the informations about the project like third party packages, scripts etc .
server.js:The file fires up the node server.