$ cd to admin-control-panel
$ npm i
$ npm start
Folder structure
admin-control-panel/
├── public # Static assets
├── src # All of the source code for the app
├── src/components # React components used throughout the app
├── src/data # Config like JSON data for properties, fields, etc
├── src/pages # App's pages
├── src/utils # Shared utilities
└── src/server.js # Express server used to serve the app in production
Technologies
Code Standards
In order to enforce code standards we use eslint and prettier. Setting up eslint in your code editor is the easiest way to adhere to guidlines while programming but we also lint and prettify code during the commit process using lint-staged.