agregar vista publica de vehiculos aun faltan cambios
This commit is contained in:
22
apiferia/src/app/store/index.ts
Normal file
22
apiferia/src/app/store/index.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { ActionReducerMap } from '@ngrx/store'
|
||||
import { LayoutState, layoutReducer } from './layout/layout-reducers'
|
||||
import {
|
||||
calendarReducer,
|
||||
type CalendarState,
|
||||
} from './calendar/calendar.reducer'
|
||||
import {
|
||||
authenticationReducer,
|
||||
type AuthenticationState,
|
||||
} from './authentication/authentication.reducer'
|
||||
|
||||
export interface RootReducerState {
|
||||
authentication: AuthenticationState
|
||||
layout: LayoutState
|
||||
Calendar: CalendarState
|
||||
}
|
||||
|
||||
export const rootReducer: ActionReducerMap<RootReducerState> = {
|
||||
authentication: authenticationReducer,
|
||||
layout: layoutReducer,
|
||||
Calendar: calendarReducer,
|
||||
}
|
||||
Reference in New Issue
Block a user