DEV Community

🪆 Nesting and overriding new React Context API

Andrei Luca on July 06, 2018

While learning react-router v4 I read some of their source code. And as we know they are using current context for passing down router and route in...
Collapse
 
elpdcore profile image
Eyal L

Great Article. Thank you.

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

Can you Please explain with Register Form?

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
 
rigoli82 profile image
Marcos

Hey man, great tutorial! I was searching for something like this. Thank you!