Sha256: ad18984b522188f1bd1ecde0d7064879b12c1a184b553dd65c8e6001f1890f7f

Contents?: true

Size: 1.05 KB

Versions: 2

Compression:

Stored size: 1.05 KB

Contents

# React Syntax
## Communication Between Components
See https://facebook.github.io/react/tips/communicate-between-components.html

# Redux Reducers
Documentation of generated Redux code for reducers.

## Example
The `helloWorld/reducers/index.jsx` example that results from running the generator with the Redux option may be slightly confusing because of its simplicity. For clarity, what follows is a more fleshed-out example of what a reducer might look like:

```javascript
import usersReducer from './usersReducer';
import blogPostsReducer from './blogPostsReducer';
import commentsReducer from './commentsReducer';
// ...

import { $$initialState as $$usersState } from './usersReducer';
import { $$initialState as $$blogPostsState } from './blogPostsReducer';
import { $$initialState as $$commentsState } from './commentsReducer';
// ...

export default {
  $$usersStore: usersReducer,
  $$blogPostsStore: blogPostsReducer,
  $$commentsStore: commentsReducer,
  // ...
};

export const initalStates = {
  $$usersState,
  $$blogPostsState,
  $$commentsState,
  // ...
};
```

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
react_on_rails-1.0.3 docs/additional_reading/generated_client_code.md
react_on_rails-1.0.2 docs/additional_reading/generated_client_code.md