import { APP } from './actionsTypes';
export const ROOT_OUTSIDE = 'outside';
export const ROOT_INSIDE = 'inside';
export const ROOT_LOADING = 'loading';
export const ROOT_SET_USERNAME = 'setUsername';
export function appStart({ root, ...args }) {
return {
type: APP.START,
root,
...args
};
}
export function appReady() {
type: APP.READY
export function appInit() {
type: APP.INIT
export function appInitLocalSettings() {
type: APP.INIT_LOCAL_SETTINGS
export function setMasterDetail(isMasterDetail) {
type: APP.SET_MASTER_DETAIL,
isMasterDetail