Skip to content

v0.5.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@gaearon gaearon released this 03 Jun 11:32
· 3981 commits to master since this release
  • Store function names are no longer significant, but you have to pass an object with all your Stores to the root (or Root). Fixes #16
import { root } from 'redux';
import * as stores from './stores/index';

@root(stores)
export default class TodoApp {
import { root } from 'redux';
import * as stores from './stores/index';

export default class TodoApp {
  render() {
    return (
      <Root stores={stores}>