Skip to content

Commit

Permalink
Fix imports in README.md TypeScript example (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anders Nylund authored May 5, 2020
1 parent 32eb92b commit 27cd2af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@ export type RootState = ReturnType<typeof reducer>;

```tsx
// pages/_app.tsx
import withRedux, { MakeStore } from 'next-redux-wrapper';
import withRedux, { MakeStore, ReduxWrapperAppProps } from 'next-redux-wrapper';
import App, { AppContext } from 'next/app';
import { Provider } from 'react-redux';
import { createStore, Store } from 'redux';
import { createStore } from 'redux';

import { reducer, RootState } from '../store';

Expand Down

0 comments on commit 27cd2af

Please sign in to comment.