11 lines
295 B
JavaScript
11 lines
295 B
JavaScript
|
|
import { SimpleOrgStore } from './tree/simple_org';
|
|
import {StandardOrgStore} from './tree/standard_org'
|
|
import {RankSchemeStore} from './rankscheme';
|
|
|
|
module.exports = {
|
|
simpleOrgStore: new SimpleOrgStore(),
|
|
standardOrgStore: new StandardOrgStore(),
|
|
rankScheme: new RankSchemeStore()
|
|
};
|