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

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

export const state = observable(defaultState);

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