Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
import { createSlice } from '@reduxjs/toolkit';
const initialState = { showLoginAlert: false };
const loginAlertSlice = createSlice({
name: 'loginAlert',
initialState,
reducers: {
setLoginAlert: (state, action) => {
state.showLoginAlert = action.payload;
},
},
});
export const { setLoginAlert } = loginAlertSlice.actions;
export default loginAlertSlice.reducer;