├── src # Source code
│ ├── app
│ ├── Components # UI Components
│ │ ├── ContactItem.js
│ │ ├── Home.js
│ │ └── ModalPopup.js
│ └── Reducer # Data reducer
│ └── appReducer.js
├── .babelrc
├── index.html
├── package-lock.json
├── package.json
├── styles.less
└── webpack.config.js # Configuration file
└── README.md
Clone the project repository and follow the commands below to get the project working:
- cd contact_list
- npm install #to install node modules
- npm start #make sure port 8090 is open, else change the port no in webpack.config.js
#happy_coding:)