React-interactive-datatable react-interactive-datatable is a React component that renders an interactive datatable. The data is automatically paginated and sortable by columns as well as by search input.
npm install react-interactive-datatableReact-interactive-datatable
react-interactive-datatable is a React component that renders an interactive datatable. The data is automatically paginated and sortable by columns as well as by search input.
js
import { DataTable } from "react-interactive-datatable"
const data = [{firstName: "Bob", lastName: "Builder"}, {firstName: "Oliver", lastName: "Twist"}]
const columns = [{ title: "First Name", data: "firstName" }, { title: "Last Name", data: "lastName" }]
function App() {
return (
);
}
export default App;
``