From 27cd2af4aee6adb80ba1b6b4a63bb30b22409cd2 Mon Sep 17 00:00:00 2001 From: Anders Nylund Date: Tue, 5 May 2020 23:55:29 +0300 Subject: [PATCH] Fix imports in README.md TypeScript example (#203) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ddb047..62bf683 100644 --- a/README.md +++ b/README.md @@ -131,10 +131,10 @@ export type RootState = ReturnType; ```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';