@dev-plugins/redux
v0.1.0
Published
Expo DevTools Plugin for Redux
Downloads
4,382
Readme
@dev-plugins/redux
A React Native Redux DevTool that can run in an Expo App
Installation
Add the package to your project
npx expo install @dev-plugins/redux
Integrate redux with the DevTool hook
import { useReduxDevTools } from '@dev-plugins/redux';
import { store } from './store';
export default function App() {
useReduxDevTools(store);
/* ... */
}