A simple react hook to get access to redux store
Needs:
- react > 16.8,
- react-redux > 6.0.0
Currently only way to get access to redux is via the connect HOC. There is no clean way to do it the hook way. This module is a tiny hook that gives out redux store
npm install use-redux-hook
or
yarn add use-redux-hook
Simple use case
import React from "react";
import { useReduxStore } from "use-redux-hook";
export const ExampleReactComponent = () => {
const {getState, dispatch} = useReduxStore();
const { user } = getState();
return <div> Hello {user.name}</div>;
};