Migrate actions,reducers and action types to TS #15
This commit is contained in:
21
app/reducers/index.ts
Normal file
21
app/reducers/index.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import { authorizeReducer } from "./authorize";
|
||||
import { circleReducer } from "./circles";
|
||||
import { commentReducer } from "./comments";
|
||||
import { globalReducer } from "./global";
|
||||
import { imageGalleryReducer } from "./imageGallery";
|
||||
import { notificationReducer } from "./notifications";
|
||||
import { postReducer } from "./posts";
|
||||
import { userReducer } from "./users";
|
||||
import { voteReducer } from "./votes";
|
||||
|
||||
export{
|
||||
authorizeReducer,
|
||||
circleReducer,
|
||||
commentReducer,
|
||||
globalReducer,
|
||||
imageGalleryReducer,
|
||||
notificationReducer,
|
||||
postReducer,
|
||||
userReducer,
|
||||
voteReducer
|
||||
}
|
||||
Reference in New Issue
Block a user