aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/index.ts
blob: cbe5bb5fd4804c625ec65051b1efbf0b46ffc889 (plain) (blame)
1
2
3
4
5
6
7
8
9
import WorkspacesStore from './store';

export const workspaceStore = new WorkspacesStore();

export default function initWorkspaces(stores, actions) {
  // eslint-disable-next-line no-param-reassign
  stores.workspaces = workspaceStore;
  workspaceStore.start(stores, actions);
}