23 lines
321 B
TypeScript
23 lines
321 B
TypeScript
const initialState = {
|
|
user: {
|
|
isAuthenticated: false,
|
|
id: '',
|
|
login: '',
|
|
token: ''
|
|
},
|
|
app: {
|
|
demoMode: false,
|
|
loading: false,
|
|
backendAPIRoot: '',
|
|
searchInput: '',
|
|
filters: {
|
|
|
|
},
|
|
fromText : '',
|
|
toText : '',
|
|
botMessage : '',
|
|
},
|
|
};
|
|
|
|
export default initialState;
|
|
|