jotai-tanstack-table
v0.0.1
Published
Jotai integration library for TanStack Table
Downloads
4
Readme
jotai-tanstack-table
Jotai integration library for TanStack Table
Install
ni jotai-tanstack-table jotai @tanstack/table-core
Usage
import { getCoreRowModel } from "@tanstack/react-table"
import { atom, useAtomValue } from "jotai"
import { atomWithTable } from "jotai-tanstack-table"
const dataAtom = atom([...defaultData])
const tableAtom = atomWithTable((get) => ({
data: get(dataAtom),
columns,
getCoreRowModel: getCoreRowModel(),
}))
const table = useAtomValue(tableAtom)
License
MIT License © 2023-PRESENT Stephen Zhou