Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
374 Bytes
import type { BrandingOptions } from '../../../adminjs-options.interface.js'
import { BRANDING_INITIALIZE } from '../actions/initialize-branding.js'
export const brandingReducer = (
state = {},
action: {
type: string
data: BrandingOptions
},
) => {
switch (action.type) {
case BRANDING_INITIALIZE:
return action.data
default:
return state
}
}