Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-simple-tabs-component
Advanced tools
A stand-alone react component for adding accessible easy-to-use bootstrap Tabs to your project.
A simple react component for adding accessible easy-to-use Tabs to your project.
# npm
npm i react-simple-tabs-component
# Yarn
yarn add react-simple-tabs-component
import { Tabs } from 'react-simple-tabs-component'
// (Optional) if you don't want to include bootstrap css stylesheet
import 'react-simple-tabs-component/dist/index.css'
// Component Example
const TabOne = () => {
return (
<>
<h3>Tab One</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perferendis sint illum iusto nostrum cumque qui
voluptas tenetur inventore ut quis?
</p>
</>
)
}
// Tabs structure Array
const tabs = [
{
label: 'Tab One', // Tab Title - String
Component: TabOne // Tab Body - JSX.Element
},
{
label: 'Tab Two',
Component: TabTwo
},
{
label: 'Tab Three',
Component: TabThree
}
]
export default function App() {
return (
<div className='App'>
<Tabs tabs={tabs} /* Props */ />
</div>
)
Prop | Type | Options | Description | Default |
---|---|---|---|---|
tabs | Array of objects | Required | Array of objects for your Tabs | - |
orientation | String | Optional | Tab orientation horizontal - vertical | horizontal |
type | String | Optional | Tabs type tabs - pills | tabs |
className | String | Optional | A className applied to the main div | bootstrap-tabs-component |
The Component is based on Bootstrap 5 HTML
structure and CSS
classes so it will work out of the box if Bootstrap 5 css stylesheet is already included in you project. If you don't have/want to include Bootstrap, you still can use a standalone
css stylesheet which was extracted form bootstrap 5 stylesheet. Just add it:
import 'react-simple-tabs-component/dist/index.css'
MIT © awran5
FAQs
A stand-alone react component for adding accessible easy-to-use bootstrap Tabs to your project.
The npm package react-simple-tabs-component receives a total of 59 weekly downloads. As such, react-simple-tabs-component popularity was classified as not popular.
We found that react-simple-tabs-component demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.