Preview: dashboardReducer.ts
Size: 377 B
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/adminjs/src/frontend/store/reducers/dashboardReducer.ts
import { DASHBOARD_INITIALIZE } from '../actions/initialize-dashboard.js'
export type DashboardInState = {
component?: string
}
export const dashboardReducer = (
state = {},
action: {
type: string
data: DashboardInState
},
): DashboardInState => {
switch (action.type) {
case DASHBOARD_INITIALIZE:
return action.data
default:
return state
}
}
Directory Contents
Dirs: 0 × Files: 16