10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
import { annualReport } from './annual_report';
|
|
import { collections } from './collections';
|
|
import { profileEdit } from './profile_edit';
|
|
|
|
export const sliceReducers = {
|
|
annualReport,
|
|
collections,
|
|
profileEdit,
|
|
};
|