DEV Community

Discussion on: 🪆 Nesting and overriding new React Context API

Collapse
 
bindhu54259683 profile image
bindhu

Hi,

How we can add API to the React Redux and give some example?

Collapse
 
iamandrewluca profile image
Andrei Luca

What do you mean? Is this related to React Context API?

Collapse
 
bindhu54259683 profile image
bindhu

YES

Thread Thread
 
iamandrewluca profile image
Andrei Luca

Please explain your use case and I'll try to help. Give me some context of what you want to do.

Thread Thread
 
bindhu54259683 profile image
bindhu • Edited

Example In Registration Form When i am trying to register with the Name,Email and Phone Number it can't stored in redux could you please explain How to perform GET and POST methods into my redux using API calls.

Here is my code..

export function setName(name)
return{
type:"UPDATENAME",
payload: new Promise((resolve,reject)=>{
resolve(name);
})

}

}

Collapse
 
bindhu54259683 profile image
bindhu

Can you Please explain with Register Form?