This is the default structure of the React dashboard.
To build the project, first issue the below command:
npm install
then to start the application issue the below command. This will open a page in your default browser,
npm start
if you are a contributor of this project, couple of things that has to be keep in mind
- Never push any code to the master or development branch. Create your own feature branch from development branch and raise a pull request once you are done with the development.
- Keep the component grouping structure intact. A particular component directory should contain its respective JS & CSS files along with the test case file.
- do not create any random file inside any random folder. Always create a new directory for new components and update existing files for existing components.
- No inline scripting or styling should be written. All styling definitions should go into the css files.
Happy coding !!