Skip to content

Instantly share code, notes, and snippets.

@yanmendes
Created August 2, 2019 20:24
Show Gist options
  • Save yanmendes/2cdc90e65a56383ec16bcbae8aa19075 to your computer and use it in GitHub Desktop.
Save yanmendes/2cdc90e65a56383ec16bcbae8aa19075 to your computer and use it in GitHub Desktop.
const renderWithRedux = (
ui,
{
initialState = {},
store = createStore(reducer, initialState, applyMiddleware(thunk))
} = {}
) => ({
...render(<Provider store={store}>{ui}</Provider>),
store
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment