0.3.1 • Published 8 months ago
@dev-plugins/redux v0.3.1
@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/reduxIntegrate redux with the DevTool hook
import { useReduxDevTools } from '@dev-plugins/redux';
import { store } from './store';
export default function App() {
useReduxDevTools(store);
/* ... */
}