mirror of
https://github.com/strapi/strapi.git
synced 2025-08-07 08:16:35 +00:00
11 lines
296 B
JavaScript
11 lines
296 B
JavaScript
import editPageReducer from './containers/EditPage/reducer';
|
|
import homePageReducer from './containers/HomePage/reducer';
|
|
import pluginId from './pluginId';
|
|
|
|
const reducers = {
|
|
[`${pluginId}_editPage`]: editPageReducer,
|
|
[`${pluginId}_homePage`]: homePageReducer,
|
|
};
|
|
|
|
export default reducers;
|