kostyasabada / react_tabs-with-router

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Tabs with Router

Description

tabs

Implement Tabs component. current prop sets the active tab by its id.

let tabs = [
  { id: 'tab-1', title: 'Tab 1', content: 'Some text 1' },
  { id: 'tab-2', title: 'Tab 2', content: 'Some text 2' },
  { id: 'tab-3', title: 'Tab 3', content: 'Some text 3' },
];
<Tabs
  tabs={tabs}
  currentTabId="tab-2"
/>
  1. Add 2 pages Home and Tabs.
    • HomePage is shown on localhost:3000 and contains a header Home.
    • TabsPage is shown on localhost:3000/tabs and contains a header Tabs and a Tabs component.
  2. Add navigation links so you can go to HomePage or TabsPage by clicking one of them.
    • The navigation should be visible from all the pages.
    • An active link should be highlighted.
  3. When you select a tab the URL should be changed to /tabs/tab-1. (where tab-1 is an id of a selected tab)
  4. After the page reload you should see a content of the tab matching the id from the URL.
    • If an id is not valid or is not set (e.g just /tabs) don't show any content.

About


Languages

Language:TypeScript 55.8%Language:HTML 26.7%Language:JavaScript 17.4%Language:CSS 0.1%