Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
react-tabs-scrollable
Advanced tools
a simple react scrollable tabs with a lot of additional features and with fully supporting of RTL mode
a simple react scrollable tabs with a lot of additional features and with fully supporting of RTL mode
npm install --save react-tabs-scrollable
import React from 'react'
import { Tabs, Tab } from 'react-tabs-scrollable'
import 'react-tabs-scrollable/dist/rts.css'
const SimpleTabs = () => {
// define state with initial value to let the tabs start with that value
const [activeTab, setActiveTab] = React.useState(1)
// define a onClick function to bind the value on tab click
const onTabClick = (e, index) => {
console.log(e)
setActiveTab(index)
}
return (
<Tabs activeTab={activeTab} onTabClick={onTabClick}>
{/* generating an array to loop through it */}
{[...Array(20).keys()].map((item) => (
<Tab key={item}>Tab {item}</Tab>
))}
</Tabs>
)
}
export default SimpleTabs
⚠ the docs and the library arent ready yet!!
After a week or something i'm going to finish them but anyway if you want you can use the library it's about 90% ready to use please let me hear your reviews and if any features you want me to add to them
MIT © Mohammed Aliwi
FAQs
a simple react scrollable tabs with a lot of additional features and with fully supporting of RTL mode
The npm package react-tabs-scrollable receives a total of 3,344 weekly downloads. As such, react-tabs-scrollable popularity was classified as popular.
We found that react-tabs-scrollable demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.