Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 852 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 852 Bytes

contact_list

├── 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:

  1. cd contact_list
  2. npm install #to install node modules
  3. npm start #make sure port 8090 is open, else change the port no in webpack.config.js

#happy_coding:)