Skip to content
Advertisement

How to pass custom props and history to Route

How to I get access to the history function when passing custom props to component.

JavaScript

If I try getting the history object in Home component, I can’t get to use the history functions. I logged the history object in the console and I can see there’s not push or replace functions anymore.

Where as, using this

JavaScript

works perfecting except then I can’t pass my custom props.

Advertisement

Answer

You just need to use the Spread operators and pass your custom props alongside.

JavaScript

If you console the props inside Home component, you can see the value of data in props.data

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement