acdlite/flummox

View on GitHub
docs/dist/flummox/data/docs/api/index.json

Summary

Maintainability
Test Coverage
{"path":"api/index","content":"API\n===\n\nFlummox has three exports:\n\n* [Actions](api/actions.md)\n* [Store](api/store.md)\n* [Flux](api/flux.md) (also available as `Flummox`) This is the default export.\n\nIf you're using ES6 module syntax:\n\n```js\nimport { Flux } from 'flummox';\n```\n\nOr multiple classes at once:\n\n```js\nimport { Flux, Store, Actions } from 'flummox';\n```\n\nAddons\n------\n\nFlummox also comes with some addons. These are not part of the main export. That way, if you don't use them, they won't increase the size of your bundle.\n\n* [FluxComponent](api/fluxcomponent.md)\n* [fluxMixin](api/fluxmixin.md)\n* [Higher-order component](api/higher-order-component.md)\n\nRefer to the [React integration guide](../guides/react-integration.md) for details.\n\n```js\nimport fluxMixin from 'flummox/mixin';\nimport FluxComponent from 'flummox/component';\nimport connectToStores from 'flummox/connect';\n```\n"}