Skip to content

Tag: reactjs

Render specific react component based on the URL

App.js Home.js This works perfectly as I want to render the Feed or Search component depending on the URL. But, I want to know is it okay to use location.pathname or is there any better alternative? Answer You could do something like: App.js Home.js This allows you to abstract away the Home component’s …