diff --git a/README.md b/README.md
index 702562e..da63bfa 100644
--- a/README.md
+++ b/README.md
@@ -1,27 +1,35 @@
-# react.js shopping cart
+# ReactJS shopping cart
-example of shopping cart implemented in react.js and redux.js
+Example of shopping cart implemented in ReactJS and ReduxJS
-for demo [click here](http://krzysu.github.io/reactjs-shopping-cart/)
+For demo [click here](http://krzysu.github.io/reactjs-shopping-cart/)
-## getting started
+## Getting started
-install dependencies and start local dev server
+install dependencies
```sh
npm install
+```
+
+start local dev server
+
+```sh
npm start
```
## details
+
- build with [create react app](https://github.com/facebookincubator/create-react-app). Check their page for more details.
- this example is using redux.js for application state management, to learn more about it I recommend [this tutorial](https://egghead.io/courses/getting-started-with-redux).
- you can look under the hood directly from your browser using [redux devtools](https://github.com/zalmoxisus/redux-devtools-extension). Install extension for your browser, open demo page (link above) and see how app state changes when you interact with it.
- if you wonder why reducers, actions and selectors are all in one file inside folder called `ducks`, [read more here](https://github.com/erikras/ducks-modular-redux).
## TODO
+
- add reducers and selectors unit tests
-* * *
-author: Kris Urbas [@krzysu](https://twitter.com/krzysu)
+---
+
+author: Kris Urbas [@krzysu](https://twitter.com/krzysu)
licence: MIT
diff --git a/src/App.js b/src/App.js
index 059304f..64f29ad 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,31 +1,32 @@
-import React from 'react';
-import Cart from './containers/Cart';
-import ProductList from './containers/ProductList';
+import Cart from "./containers/Cart";
+import ProductList from "./containers/ProductList";
const App = () => {
- return (
-
-
-
-
React+Redux Shopping Cart Example
-
-
-
-
-
-
-
-
-
-
-
-
+ return (
+
+
+
+
React+Redux Shopping Cart Example
+
+
+
+
+
- );
-}
+
+
+
+
+
+
+
+ );
+};
export default App;
diff --git a/src/components/Cart/Cart.js b/src/components/Cart/Cart.js
index 856c7ca..976cae3 100644
--- a/src/components/Cart/Cart.js
+++ b/src/components/Cart/Cart.js
@@ -1,38 +1,43 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import CartItem from './CartItem';
+import PropTypes from "prop-types";
+import CartItem from "./CartItem";
const Cart = ({ items, total, currency, removeFromCart }) => {
- return (
-