- https://github.com/cheapsteak/react-transition-group-plus/
- http://cheapsteak.github.io/react-transition-group-plus/
- http://marnusw.github.io/react-css-transition-replace/
- https://github.com/marnusw/react-css-transition-replace
export const getItems = (state) => state.cart.get('items');
export const getItemsWithTotals = createSelector(
[ getItems ],
(items) => {
return items.map(i => {
return i.set('total', i.get('price', 0) * i.get('quantity'));
});
}
);
| ## Use ScrollReveal on React | |
| - https://andrewshiau.wordpress.com/2017/04/02/use-scrollreveal-js-on-a-react-component/ |