cra-template-redux icon indicating copy to clipboard operation
cra-template-redux copied to clipboard

ARCHIVED: the CRA+JS template has moved to https://github.com/reduxjs/redux-templates

Results 4 cra-template-redux issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** Vite is a blazing fast build tool that supports many frontend frameworks, including React and React Typescript. I personally set...

## Context - The [Writing Tests page](https://redux.js.org/usage/writing-tests) page recently [has major updates](https://twitter.com/acemarke/status/1541157116404178946) to advocate integration tests over unit tests (test reducers/ selectors/ action creators individually). - This PR removes all...

Inspired by reduxjs/cra-template-redux-typescript#21 I'm starting out with integration tests using React Testing Library and Jest (without mocking the store), but I'm open to suggestions. It seems like the existing Redux...

The async example is good, but perhaps not as universally applicable as a REST API call. What about adding a few state modifications to the slice? ```js fetchTodoStart: (state, action)...