import React from 'react'; import { Provider } from 'react-redux'; import { store } from '../../store'; export const withReduxStore = (Component: React.ComponentType) => { const Wrapper = (props: Props) => { return ( ); }; return Wrapper; }; export const withReduxStoreAndRefForwarding = (Component: React.ComponentType) => React.forwardRef((props, ref) => { return ( ); });