Skip to content

Instantly share code, notes, and snippets.

@jamesseanwright
Created December 21, 2018 15:31
Show Gist options
  • Select an option

  • Save jamesseanwright/5bdd8a92bc907426cdc293df6fab6e50 to your computer and use it in GitHub Desktop.

Select an option

Save jamesseanwright/5bdd8a92bc907426cdc293df6fab6e50 to your computer and use it in GitHub Desktop.
Roll Your Own Redux Root Component
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