Giter Site home page Giter Site logo

react_tabs-with-router's Introduction

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.

react_tabs-with-router's People

Contributors

mgrinko avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.