mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-12 05:43:03 -05:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
import { createActionGroup, emptyProps } from '@ngrx/store';
|
|
|
|
export const appActions = createActionGroup({
|
|
source: 'App Component',
|
|
events: {
|
|
'Init App': emptyProps(),
|
|
},
|
|
});
|