react-redux-realworld-example-app icon indicating copy to clipboard operation
react-redux-realworld-example-app copied to clipboard

Exemplary real world application built with React + Redux

Results 87 react-redux-realworld-example-app issues
Sort by recently updated
recently updated
newest added

I went through all the components and updated them to React 16.9 using hooks. No more classes. Reduced code somewhat.

So I'm adding typescript to my clone of this repo for a side project, and I figured that since "this project uses create-react-app" that I could follow the very simple...

Is there any way to add image file upload integration inside Article

Test the homepage structure. Test the login and signup page. Fixes gothinkster/react-redux-realworld-example-app#41

When i run the app with localhost with API_ROOT `http://localhost:8084/api` it start throwing me `Unhandled Rejection (TypeError): Cannot read property 'body' of undefined` However tried to investigate the issue and...

Can you please add a license to this repository? You may not be aware of this, but legally, without a license, no one can use your code. http://opensource.stackexchange.com/q/1720/775

Let's say I logged into the application and opened it in other tabs as well. I noticed that whenever I logout from any of the tabs, I can still make...

Back button goes all the way back to 1st page of paginated results instead of showing last shown paginated page. To reproduce this bug: - Go to last page of...

I noticed that the password is send as plain text through: `(username, email, password) => requests.post('/users', { user: { username, email, password } }),` From my basic security understanding, isn't...