DefinitelyTyped/types/enzyme-redux/enzyme-redux-tests.tsx
2018-04-12 10:02:44 -07:00

10 lines
447 B
TypeScript

import { mountWithState, mountWithStore, shallowWithState, shallowWithStore } from 'enzyme-redux';
import * as React from 'react';
const Component = () => <div>component</div>;
const shallowWithStateWrapper = shallowWithState(<Component />, {});
const shallowWithStoreWrapper = shallowWithStore(<Component />, {});
const mountWithStateWrapper = mountWithState(<Component />, {});
const mountWithStoreWrapper = mountWithStore(<Component />, {});