mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-14 05:23:06 +00:00
12 lines
396 B
TypeScript
12 lines
396 B
TypeScript
import { StoreEffects } from './store.effects';
|
|
import { NotificationsEffects } from './shared/notifications/notifications.effects';
|
|
import { NavbarEffects } from './navbar/navbar.effects';
|
|
import { SearchSidebarEffects } from './shared/search/search-sidebar/search-sidebar.effects';
|
|
|
|
export const appEffects = [
|
|
StoreEffects,
|
|
NavbarEffects,
|
|
NotificationsEffects,
|
|
SearchSidebarEffects
|
|
];
|