From 848b1568289d1fd354b24367492e3fbf1ad5e897 Mon Sep 17 00:00:00 2001 From: Seve Badajoz Date: Mon, 9 Aug 2021 09:44:39 -0700 Subject: [PATCH] type reducer store --- client/src/reducers/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/reducers/index.ts b/client/src/reducers/index.ts index 8f07bfe4..e12aae34 100644 --- a/client/src/reducers/index.ts +++ b/client/src/reducers/index.ts @@ -63,4 +63,6 @@ const Reducer = undoable( const store = createStore(Reducer, applyMiddleware(thunk, annoMatrixGC)); +export type RootState = ReturnType; + export default store;