DEV Community

sundaycrunk
sundaycrunk

Posted on

Answer: Render Props - React Route

We use Route with render props as,

<Route path = "/about" component={About} />

OR,

<Route path = "/about" render= { (props) => <About {...props} } />

The second one is different from the first one in the sense that in the second case, the About component has access to the…

Top comments (0)