mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
15 lines
566 B
TypeScript
15 lines
566 B
TypeScript
import React, { FC } from 'react';
|
|
import { Provider } from 'react-redux';
|
|
import { MockStoreEnhanced } from 'redux-mock-store';
|
|
|
|
import { RootState } from '../ui/redux/modules';
|
|
|
|
// eslint-disable-next-line react/display-name -- There's not a good way to do with a FunctionComponent while also maintaining the display name.
|
|
export const withReduxStore = (store: MockStoreEnhanced<RootState, {}>, Node?: React.ComponentType): FC => ({ children }) => {
|
|
return (
|
|
<Provider store={store}>
|
|
{Node ? <Node>{children}</Node> : children}
|
|
</Provider>
|
|
);
|
|
};
|