This Project is a Simple ReactJS Project which demonstrates the following
- Creating a Component in React
- Making HTTP calls
- Communicating between parent and child component
- Using Material UI with React
Refer to https://nodejs.org/en/ to install nodejs
Install create-react-app npm package globally. This will help to easily run the project and also build the source files easily. Use the following command to install create-react-app
npm install -g create-react-app
Clone the project into local
Install all the npm packages. Go into the project folder and type the following command to install all npm packages
npm install
In order to run the application Type the following command
npm start
The application has just one url /customerlist which ties to Customers Component
create-react-app : The following link has all the commands that can be used with create-react-app https://github.com/facebook/create-react-app
ReactJS : Refer to https://reactjs.org/
Material UI Table: Refer to https://material-ui.com/components/tables/