herereadthis/redwall

View on GitHub
app/AppFlux.js

Summary

Maintainability
A
0 mins
Test Coverage
import {Flux} from 'flummox';

import AppStore from './AppStore';
import AppActions from './AppActions';

export default class AppFlux extends Flux {
    constructor() {
        super();

        this.createActions(AppActions.ID, AppActions);
        this.createStore(AppStore.ID, AppStore, this);
    }
}