Files
remark42/frontend/app/store/reducers.ts
T
2021-05-06 15:55:46 -05:00

17 lines
422 B
TypeScript

import * as comments from './comments/reducers';
import * as postInfo from './post-info/reducers';
import * as theme from './theme/reducers';
import * as user from './user/reducers';
import * as userInfo from './user-info/reducers';
import * as thread from './thread/reducers';
/** Merged store reducers */
export const rootProvider = {
...comments,
...theme,
...postInfo,
...userInfo,
...thread,
...user,
};