Highlight differences between images
npm install react-image-diffCompares images, inspired by Github's image diff view modes.


```
npm install react-image-diff
http://cezary.github.io/react-image-diff/
`javascript
import React from 'react';
import ImageDiff from 'react-image-diff';
class Component extends React.Component {
render() {
return (
);
}
}
``
* after: string - url to after image
* before: string - url to before image
* height: number - height in pixels
* width: number - width in pixels
* type: string - type of image comparison (difference, fade, or swipe)
* value: number - decimal fraction used to compute transition between before and after images
MIT