# redux-devtools-ui
**Repository Path**: mirrors_iamdustan/redux-devtools-ui
## Basic Information
- **Project Name**: redux-devtools-ui
- **Description**: Experimental UI fun for the redux devtools
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-09-24
- **Last Updated**: 2026-05-31
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Redux Devtools UI
An opinionated UI on top of [redux-devtools](https://github.com/gaearon/redux-devtools).
Provides a toolbar to toggle in docked mode or pop open into a new window.


### Example usage:
```jsx
import React from 'react';
import ReactDOM from 'react-dom';
import {ReduxRouter} from 'redux-router';
import Devtools from 'redux-devtools-ui';
import {Provider} from 'react-redux';
import createReduxStore from './redux';
import createHistory from 'history/lib/createBrowserHistory';
const store = createReduxStore(createHistory);
const app = (
);
ReactDOM.render((
process.env.NODE_ENV === 'development'
? {app}
: app
), document.getElementById('app'));
```
## License
MIT Licensed. Copyright (c) 2015 Dustan Kasten