import { useReduxContext } from './useReduxContext'; /** * A hook to access the redux store. * * @returns {any} the redux store * * @example * * import React from 'react' * import { useStore } from 'react-redux' * * export const ExampleComponent = () => { * const store = useStore() * return
{store.getState()}
* } */ export function useStore() { var _useReduxContext = useReduxContext(), store = _useReduxContext.store; return store; }