
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
reactstrap-sortable-table
Advanced tools
Reactstrap-Sortable-Table is sortable table component build with React-Bootstrap
Use the npm package manager to install Reactstrap-Sortable-Table.
npm install reactstrap-sortable-table
This package needs this libraries to be installed.
"peerDependencies": {
"bootstrap": "^5.1.3",
"react": "^17.0.2",
"react-bootstrap": "^2.1.2",
"react-dom": "^17.0.2"
}
import SortableTable from 'reactstrap-sortable-table'
import 'bootstrap/dist/css/bootstrap.min.css';
import React, { useState } from 'react';
function Component() {
const [data, setData] = useState([
{header1: 'Michael', header2: 'James', header3: 'Tran', header4: 'Hill'},
{header1: 'Jack', header2: 'Cole', header3: 'Naix', header4: 'Sia'},
{header1: 'Lina', header2: 'Trent', header3: 'Jug', header4: 'Shane'},
{header1: 'Moss', header2: 'Creed', header3: 'Goons', header4: 'Dhale'},
{header1: 'Bike', header2: 'Troll', header3: 'Need', header4: 'Groot'},
])
return (
<SortableTable
data={data}
setData={setData}
/>
);
}
export default Component;
Check the props documentation for more information
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
FAQs
A customizable react bootstrap sortable table component
We found that reactstrap-sortable-table 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.