Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

segmentio/deku-tabs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Circle CI

deku-tabs

A tabs component for Deku.

Demo

Usage

import { Tabs, Tab } from '@segment/deku-tabs';

function render() {
  return (
    <Tabs>
      <Tab label="1" href='/1' active={active === '1'} />
      <Tab label="2" href='/2' active={active === '2'} />
      <Tab label="3" href='/3' active={active === '3'} />
    </Tabs>
  );
}