AI agents: fetch the documentation index at llms.txt. Markdown versions are available by appending .md to any page URL, including this page's markdown.
Type table
Document props, API fields, and config shapes with TypeTable so readers can scan types, requirements, defaults, and descriptions in one place.
Use the TypeTable component to document object shapes, API responses, and component props in a structured table.
Basic usage
Pass a type object where each key is a field name and the value describes its type, description, and constraints:
<TypeTable
type={{
id: {
description: "Unique project identifier.",
type: "string",
required: true,
},
name: {