Bradley Reeves
Results
2
comments of
Bradley Reeves
Use the props method by updating the following files. **auth.actions.ts** `export const authLogin = createAction('[Auth] Login', props());` **auth.models.ts** `export interface AuthState {`  ` isAuthenticated: boolean;`  ` token: string;` `}` **auth.reducer.ts**...
Make sense, thanks for the suggestions!