Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: sorting docs #5400

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions docs/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,6 @@
{
"label": "Feature Guides",
"children": [
{
"label": "Features",
"to": "guide/features"
},
{
"label": "Column Ordering",
"to": "guide/column-ordering"
Expand Down
2 changes: 1 addition & 1 deletion docs/framework/react/guide/table-state.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ TanStack Table has a simple underlying internal state management system to store

### Accessing Table State

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.
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.

```jsx
const table = useReactTable({
Expand Down
Loading
Loading