Skip to content

Commit ab0c5e0

Browse files
authoredMar 8, 2024··
docs: sorting docs (#5400)
1 parent 2ec0d29 commit ab0c5e0

File tree

5 files changed

+445
-60
lines changed

5 files changed

+445
-60
lines changed
 

‎docs/config.json

-4
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,6 @@
6767
{
6868
"label": "Feature Guides",
6969
"children": [
70-
{
71-
"label": "Features",
72-
"to": "guide/features"
73-
},
7470
{
7571
"label": "Column Ordering",
7672
"to": "guide/column-ordering"

‎docs/framework/react/guide/table-state.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ TanStack Table has a simple underlying internal state management system to store
1515

1616
### Accessing Table State
1717

18-
You do not need to set up anything special in order for the table state to work. If you pass noting into either `state`, `initialState`, or any of the `on[State]Change` table options, the table will manage its own state internally. You can access any part of this internal state by using the `table.getState()` table instance API.
18+
You do not need to set up anything special in order for the table state to work. If you pass nothing into either `state`, `initialState`, or any of the `on[State]Change` table options, the table will manage its own state internally. You can access any part of this internal state by using the `table.getState()` table instance API.
1919

2020
```jsx
2121
const table = useReactTable({

0 commit comments

Comments
 (0)
Please sign in to comment.