Skip to content

An unstyled react table component built on top of @tanstack/react-table v8.

License

Notifications You must be signed in to change notification settings

otaku-oss/unstyled-table

Repository files navigation

Unstyled Table

An unstyled react table component built on top of @tanstack/react-table v8

Installation

npm install --save unstyled-table
#or
yarn add unstyled-table
#or
pnpm add unstyled-table

Get started

//react component
import { useState } from 'react';
import { Table } from 'unstyled-table';

const columns = [
  { accessorKey: 'name', header: 'Name' },
  { accessorKey: 'email', header: 'Email' },
];

export default function YourTable() {
  const [data, setData] = useState([
    { name: 'Touha', email: '[email protected]' },
    { name: 'Sadman', email: '[email protected]' },
    { name: 'Otaku Dev', email: '[email protected]' },
  ]);

  return <Table columns={columns} data={data} />;
}

Customization

import { useState } from 'react';
import { Table } from 'unstyled-table';

const columns = [
  { accessorKey: 'name', header: 'Name' },
  { accessorKey: 'email', header: 'Email' },
];

export default function YourTable() {
  const [data, setData] = useState([
    { name: 'Touha', email: '[email protected]' },
    { name: 'Sadman', email: '[email protected]' },
    { name: 'Otaku Dev', email: '[email protected]' },
  ]);

  return (
    <Table
      columns={columns}
      data={data}
      renders={{
        table: ({ children }) => (
          <div className="table-wrapper">
            <table className="table-class">{children}</table>
          </div>
        ),
      }}
    />
  );
}

About

An unstyled react table component built on top of @tanstack/react-table v8.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published