I'm trying to pass a reducer function inside a link like this:
<Link
to={{
pathname: '/location',
state:{
listinput: addList
}
}}>
But when I try to access the parameter like that:
props.inputList
I get error :"react_devtools_backend.js:3973 Warning: Invalid values for props listinputs on tag"
I would be happy for help on how to pass the function correctly