Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80540 views
1
import { Flummox } from 'flummox';
2
import DocActions from './actions/DocActions';
3
import DocStore from './stores/DocStore';
4
5
export default class Flux extends Flummox {
6
constructor() {
7
super();
8
9
const docActions = this.createActions('docs', DocActions);
10
this.createStore('docs', DocStore, { docActions });
11
}
12
}
13
14