Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-tab-component-pure-js

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-tab-component-pure-js

A customizable React tab component with no built-in CSS.

  • 1.0.9
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
79
Maintainers
0
Weekly downloads
 
Created
Source

react-tab-component-pure-js

A customizable React tab component with no CSS, allowing you to style it as you see fit.

Installation

To install the component, use npm or yarn:

npm install react-tab-component-pure-js

or

yarn add react-tab-component-pure-js

Usage

Here’s a basic example of how to use the react-tab-component-pure-js in your React project:

import React, { useState } from 'react';
import { Tab } from 'react-tab-component-pure-js';

const Tab1 = () => <div>Content for Tab 1</div>;
const Tab2 = () => <div>Content for Tab 2</div>;

const App = () => {
  const [currentTabIndex, setCurrentTabIndex] = useState(0);

  const tabList = [
    { name: 'Tab 1', Component: Tab1 },
    { name: 'Tab 2', Component: Tab2 },
  ];

  const handleTabClick = (index: number) => {
    setCurrentTabIndex(index);
  };

  return (
    <Tab
      tabList={tabList}
      currentTabIndex={currentTabIndex}
      tabClickHandler={handleTabClick}
      selectTabClass="selected-tab"
      unselectedTabClass="unselected-tab"
      tabContainerClass="tab-container"
      tabOptionsClass="tab-options"
    />
  );
};

export default App;


Props

tabList: An array of objects representing each tab. Each object should have:

  • tabList: An array of objects representing each tab. Each object should have:
    • name: The name of the tab.
    • Component: The component to render when the tab is selected.
  • Component: The component to render when the tab is selected.
  • currentTabIndex: The index of the currently selected tab.
  • tabClickHandler: A function to handle tab clicks. It receives the index of the clicked tab.
  • selectTabClass: The CSS class for the selected tab.
  • unselectedTabClass: The CSS class for the unselected tabs.
  • tabContainerClass: The CSS class for the tab container.

Example Styles

Here is an example of how you can style the tabs:

.tab-container {
  display: flex;
  flex-direction: column;
}

.tab-options {
  display: flex;
  border-bottom: 1px solid #ccc;
}

.selected-tab {
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-bottom: none;
  cursor: pointer;
  background-color: #f9f9f9;
}

.unselected-tab {
  padding: 10px 20px;
  cursor: pointer;
}

Contributing

Contributions are welcome! Please open an issue or submit a pull request on github

License

This project is licensed under the MIT License.

Keywords

FAQs

Package last updated on 02 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc