mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
17 lines
307 B
JavaScript
17 lines
307 B
JavaScript
import { createSlice } from '@reduxjs/toolkit';
|
|
|
|
const app = createSlice({
|
|
name: 'app',
|
|
initialState: { locale: 'en' },
|
|
reducers: {
|
|
updateApp(state, action) {
|
|
state = action.payload;
|
|
return state;
|
|
},
|
|
},
|
|
});
|
|
|
|
export const { updateApp } = app.actions;
|
|
|
|
export default app.reducer;
|