react-minimal-tabs

A simple Tabs component with sliding active tab marker

Usage no npm install needed!

<script type="module">
  import reactMinimalTabs from 'https://cdn.skypack.dev/react-minimal-tabs';
</script>

README

react-simple-tabs

A simple and easy to use tabs component for react with animated active tab marker.

Getting Started

Install

$ npm install react-bootstrap-treeview

Usage

React.render(
    <Tabs defaultActiveTabIndex={1}>
      <Tab tabTitle="1">
        <div className="tab-1">1</div>
      </Tab>
      <Tab tabTitle="2">
        <div className="tab-2">2</div>
      </Tab>
    </Tabs>
);