1.1.1 • Published 7 months ago

rc-easy-tabs v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

rc-easy-tabs

rc-easy-tabs is a user-friendly React library designed for effortless creation of customizable and responsive tabs with components. Its intuitive interface streamlines the tab-building process, offering a seamless experience for developers. With a focus on flexibility, it empowers users to tailor the tabs to their specific needs, ensuring a visually appealing and responsive design that effortlessly adapts to various screen sizes.

Install

npm install --save rc-easy-tabs

Usage

import React, { useState } from 'react'

import TabComponent from 'rc-easy-tabs'

const App = () => {
  const tabStyle= {
    background:'#C0CFFA',   
  }

  const selectedTab= {  
    background:'#48578E',    
    color:'white'
  }  
  const [tabsData,setTabsData]=useState([
    {title:"Tab1",component:<Component1/>}, //Component is your another react component that you want to use as in tab
    {title:"Tab2",component:<Component2/>},   
  ])
  return <TabComponent 
              tabsData={tabs} 
              tabStyle={tabStyle} //optional, If not provided default style will be applied
              selectedTabStyle={selectedTab} //optional, If not provided default style will be applied
          />
}

export default App

License

MIT © akshayshelkeengg

Keywords

  • react
  • easy
  • tabs
  • react-component
  • responsive tabs
  • customizable
1.1.1

7 months ago

1.1.0

7 months ago

1.0.5

7 months ago

1.0.4

7 months ago

1.0.3

7 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago