♻ Move project source files to top level from src, update Sentry dependency (#630)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import { mutations } from './mutations';
|
||||
import { getters } from './getters';
|
||||
import { actions } from './actions';
|
||||
import { MainState } from './state';
|
||||
|
||||
const defaultState: MainState = {
|
||||
isLoggedIn: null,
|
||||
token: '',
|
||||
logInError: false,
|
||||
userProfile: null,
|
||||
dashboardMiniDrawer: false,
|
||||
dashboardShowDrawer: true,
|
||||
notifications: [],
|
||||
};
|
||||
|
||||
export const mainModule = {
|
||||
state: defaultState,
|
||||
mutations,
|
||||
actions,
|
||||
getters,
|
||||
};
|
||||
Reference in New Issue
Block a user