mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
import { StoreEffects } from './store.effects';
|
|
import { NotificationsEffects } from './shared/notifications/notifications.effects';
|
|
import { NavbarEffects } from './navbar/navbar.effects';
|
|
|
|
export const appEffects = [
|
|
StoreEffects,
|
|
NavbarEffects,
|
|
NotificationsEffects,
|
|
];
|