Skip to content

Commit db7ddbb

Browse files
committed
prettier
1 parent b40cc67 commit db7ddbb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/blog/announcing-tanstack-table-v9.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Announcing TanStack Table V9"
2+
title: 'Announcing TanStack Table V9'
33
published: 2026-08-04
44
draft: true
55
excerpt: TanStack Table V9 is here with a tree-shakable feature architecture, fine-grained reactivity, improved performance, and first-class support for more frameworks.
@@ -72,18 +72,18 @@ import {
7272
rowPaginationFeature,
7373
tableFeatures,
7474
useTable,
75-
} from "@tanstack/react-table";
75+
} from '@tanstack/react-table'
7676

7777
const features = tableFeatures({
7878
rowPaginationFeature,
7979
paginatedRowModel: createPaginatedRowModel(), // Only if client-side pagination is needed
80-
});
80+
})
8181

8282
const table = useTable({
8383
features,
8484
columns,
8585
data,
86-
});
86+
})
8787
```
8888

8989
No other features will be included in the bundle, unless you add them explicitly. This should mean that the average table in an application will be smaller by using TanStack Table V9 compared to Table V8, even though the total package size has increased from 14kb to 25kb at the time of writing. TanStack Table V9 is able to offer more while staying lean for your use-cases.

0 commit comments

Comments
 (0)