trunk/pc4mobx/organization/stores/index.js

9 lines
212 B
JavaScript
Raw Normal View History

2022-05-05 16:02:19 +08:00
import { SimpleOrgStore } from './tree/simple_org';
import {StandardOrgStore} from './tree/standard_org'
module.exports = {
simpleOrgStore: new SimpleOrgStore(),
standardOrgStore: new StandardOrgStore()
};