Files
DefinitelyTyped/redux-router
Remo H. Jansen bb86dc40b9 Fixes compilation error
The original file contained:

```
    /**
    * A component that renders a React Router app using router state from a Redux store.
    */
    export class ReactRouter { }
```

The exported ``ReactRouter ` class is empty but it is supposed to be the ReactRouter. 

I removed the empty class and exported the the ReactRouter instead:

```
declare module "redux-router/lib/ReduxRouter" {
    import Router from "react-router";
    export default Router;
}
```
2016-02-05 11:12:51 +00:00
..
2016-02-05 11:12:51 +00:00