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

export const workspaceStore = new WorkspacesStore();

export default function initWorkspaces(stores, actions) {
  stores.workspaces = workspaceStore;
  workspaceStore.start(stores, actions);
}