Skip to content
Advertisement

how to add tab component and load pages in tabs in react js app?

I have a react js app, that i’m working on. I created a myfirstcomponent, which call a rest api and displays some json data. Now I want to expand my app and add more components, say mySecondComponent. but i want to make it such that i create tabs for this. so I researched and based on the tutorials, i created a tabs and a tab component as well. Now, i want to modify my render method in my app.js file , such that i can render my components within the tab component. so i tried the following, added the Tabs and Tab component inside the app div, now i need to show/hide the components based on the selected tab. . I’m new to react so, i want to make sure i am headed in right direction. is this the right way of doing this in reactjs?

JavaScript

app.js file

JavaScript

Tabs

JavaScript

Tab.js

JavaScript

Advertisement

Answer

I don’t think that approach is right. You should be using routing inside the tab component and links to the routes. Pluralsight site has a pretty good example on how to implement what you want to do. https://app.pluralsight.com/guides/how-to-create-nested-tab-routes-with-react-router

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