aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/state.js
blob: f938c1470ec7d68476ca7a0393bdea3e39938d50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { observable } from 'mobx';

const defaultState = {
  isLoading: false,
  workspaces: [],
  workspaceBeingEdited: null,
};

export const state = observable(defaultState);

export function resetState() {
  Object.assign(state, defaultState);
}