Highlights differences between two strings, uses the diff module based on (https://github.com/cezary/react-diff)
npm install react-diff-component --save
http://cezary.github.io/react-diff/
import Diff from 'react-diff-component';
const Component = () => (
<Diff inputA="test" inputB="test2" type={Diff.types.chars} />
);
MIT