9 lines
212 B
JavaScript
9 lines
212 B
JavaScript
|
|
|
||
|
|
import { SimpleOrgStore } from './tree/simple_org';
|
||
|
|
import {StandardOrgStore} from './tree/standard_org'
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
simpleOrgStore: new SimpleOrgStore(),
|
||
|
|
standardOrgStore: new StandardOrgStore()
|
||
|
|
};
|