Remove unused references to ThunkAction. Fixes a build error since @types/redux-thunk 2.2.0 removes the ThunkAction export.

This commit is contained in:
SteveSandersonMS
2017-01-18 19:14:17 +00:00
parent a046bd2021
commit 867d070263
3 changed files with 3 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
import { Action, Reducer, ThunkAction } from 'redux';
import { Action, Reducer } from 'redux';
// -----------------
// STATE - This defines the type of data maintained in the Redux store.