Created
December 21, 2018 15:31
-
-
Save jamesseanwright/5bdd8a92bc907426cdc293df6fab6e50 to your computer and use it in GitHub Desktop.
Roll Your Own Redux Root Component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export default () => ( | |
| <Provider | |
| defaultState={defaultState} | |
| reducer={rootReducer} | |
| > | |
| <Status /> | |
| <MessageForm /> | |
| <MessageList /> | |
| </Provider> | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment