Handle innerHTML links the React Router way.
```
npm install react-router-innerhtml-links --save
Using Yarn:
``
yarn add react-router-innerhtml-links
`js`
import Links from 'react-router-innerhtml-links';
Accepts two parameters
* An element ref (docs).
* Browser history.
`js`
componentDidMount() {
this.links = new Links(this.div, storeHistory);
}
`js`
componentWillUnmount() {
this.links.removeListeners();
}
attribute to the parent.`html
``