The Principal Dev – Masterclass for Tech Leads

The Principal Dev – Masterclass for Tech LeadsNov 27-28

Join

SVAR React DataGrid | Data Table

WebsiteGetting StartedDemos

npm License npm downloads

SVAR React DataGrid is a ready-to-use component that helps you integrate powerful, feature-rich and lightning-fast data tables into React apps. It efficiently handles large datasets and supports virtual scrolling, in-cell editing, sorting, filtering, TypeScript, and full customization to fit complex projects.

SVAR React DataGrid - Examples

:sparkles: Key Features

:hammer_and_wrench: How to Use

To start using SVAR React DataGrid component, simply import the package and include the desired component in your React file:

import { Grid } from "@svar-ui/react-grid";
import "@svar-ui/react-grid/all.css";

const columns = [
    { id: 'id', width: 50 },
    {
      id: 'city',
      width: 100,
      header: 'City',
      footer: 'City',
    },
    {
      id: 'firstName',
      header: 'First Name',
      footer: 'First Name',
      width: 150,
    },
];

const data = [
    {
        id: 1,
        city: "London",
        firstName: "Alex"
    }
];

const myComponent => (<Grid columns={column} data={data} />);

See the getting started guide to quickly set up and begin using SVAR React DataGrid component in your React projects.

:speech_balloon: Need Help?

Post an Issue or use our community forum.

Join libs.tech

...and unlock some superpowers

GitHub

We won't share your data with anyone else.