├── .codesandbox └── workspace.json ├── .gitignore ├── package.json ├── public └── index.html └── src ├── App.js ├── components ├── AddContact │ └── index.js ├── EditContact │ └── index.js ├── Home │ └── index.js └── Navbar │ └── index.js ├── index.js ├── redux └── reducers │ └── contactReducer.js └── styles.css /.codesandbox/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/React-Redux-Contact-Book/HEAD/.codesandbox/workspace.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/React-Redux-Contact-Book/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/React-Redux-Contact-Book/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/React-Redux-Contact-Book/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/AddContact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/React-Redux-Contact-Book/HEAD/src/components/AddContact/index.js -------------------------------------------------------------------------------- /src/components/EditContact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/React-Redux-Contact-Book/HEAD/src/components/EditContact/index.js -------------------------------------------------------------------------------- /src/components/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/React-Redux-Contact-Book/HEAD/src/components/Home/index.js -------------------------------------------------------------------------------- /src/components/Navbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/React-Redux-Contact-Book/HEAD/src/components/Navbar/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/React-Redux-Contact-Book/HEAD/src/index.js -------------------------------------------------------------------------------- /src/redux/reducers/contactReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/React-Redux-Contact-Book/HEAD/src/redux/reducers/contactReducer.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------