Skip to content

Tag: react-redux

Problem in React DropDown list value selection

Iam struggling with a dropdown menu list for my react app. The problem is, I have a API for which one of the key(key3) has comma(,) seperated values which I want to display in my dropdown list. API response looks like this I have created a reducer for this API response and tried to use .map() function for key…

Redux createAsyncThunk vs useEffect hook

I’m familiar with react hooks, and i find it really easy to work with useEffect, thunk is very difficult to deal with, can i just use useEffect & axios and just dispatch the result to the store without using createAsyncThunk? is there any major performance benefit to use it over useEffect? createAsy…