For Demo: Click me
- you would need npm installed
- run the command
npm install
, this will install all the dependencies that are stated insidepackage.json
- Project is bootstraped with
create-react-app
- In order to share the details from one component to another,
react-redux
is used - Later
react-router
is also used to create different links (however more work is to be done regarding to this) - Project is also made Responsive to all the devices (phone, laptop)
- Recently there is an issue with
react-pdf
it is causing some error inside node_modules
There are 6 sections inside the src files :
- components : This consists of all the components that are used inside the website.
- images : This consists of image that is used inside website.
- Pages : This consists of javascript files, each file represent a separate page. These pages uses elements from the
component
's tab. - storage : This consists of 1 prime file
index.js
+ all the other files that will be unique storage sections ( these storage sections will store the data and will be assigned their own actions, for the modifications of the data being stored ) all of these will be pooled into theindex.js
file which is later called insidecomponents
. - Styles : This will consist of all the designing and styling of the components.