nanccyy / react_tabs-with-router

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Tabs with Router

If you don't use Typescript

  1. Rename .tsx files to .jsx
  2. use eslint-config-react in .eslintrs.js

Description

Implement an App with a navigation and 2 pages:

  1. Show <h1>Home page</h1> on localhost:3000.
  2. Show TabsPage component on localhost:3000/tabs. Use this tabs:
    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' },
    ];
  3. Add a navigation to Home or Tabs page.
    • The navigation should be visible everywhere.
    • An active link should be highlighted.
  4. TabsPage should show a list of tabs.
    • When you select a tab the URL should be changed to /tabs/tab-1 (use actual tab.id).
    • a tab content should be shown below the list
    • the selected tab should be highlighted
  5. After the page reload you should see a content of the tab matching the id from the URL.
    • If the id is not valid or is not set (e.g just /tabs) show Please select a tab message.

tabs

About


Languages

Language:TypeScript 64.8%Language:HTML 18.9%Language:JavaScript 16.3%Language:SCSS 0.1%