From 64ef24c433ec21c24e0273ed1ca23e49691c92bf Mon Sep 17 00:00:00 2001 From: Kevin Vandy Date: Mon, 6 May 2024 21:08:16 -0500 Subject: [PATCH] docs: rename data guide --- docs/config.json | 2 +- docs/guide/data.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/config.json b/docs/config.json index b4d34c99d8..b3720d376e 100644 --- a/docs/config.json +++ b/docs/config.json @@ -91,7 +91,7 @@ "label": "Core Guides", "children": [ { - "label": "Data (and TypeScript)", + "label": "Data", "to": "guide/data" }, { diff --git a/docs/guide/data.md b/docs/guide/data.md index 0eda641219..e6c5af14c8 100644 --- a/docs/guide/data.md +++ b/docs/guide/data.md @@ -2,7 +2,7 @@ title: Data Guide --- -## Data (and TypeScript) Guide +## Data Guide Tables start with your data. Your column definitions and rows will depend on the shape of your data. TanStack Table has some TypeScript features that will help you create the rest of your table code with a great type-safe experience. If you set up your data and types correctly, TanStack Table will be able to infer the shape of your data and enforce that your column definitions are made correctly.