agregar vista publica de vehiculos aun faltan cambios

This commit is contained in:
2025-07-17 19:55:28 -04:00
parent 2e99d7b290
commit 31ffabe6cc
965 changed files with 252291 additions and 0 deletions

View 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,
}