mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
11 lines
475 B
TypeScript
11 lines
475 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, {}>): FC => ({ children }) => (
|
|
<Provider store={store}>{children}</Provider>
|
|
);
|