diff --git a/src/components/Table/Table.stories.tsx b/src/components/Table/Table.stories.tsx index 18e711c6..fc1fabc7 100644 --- a/src/components/Table/Table.stories.tsx +++ b/src/components/Table/Table.stories.tsx @@ -33,6 +33,12 @@ const meta: Meta = { component: Table, parameters: { layout: 'centered', + docs: { + description: { + component: + '> 💡 **Prefer [DataVis NITRO](?path=/docs/components-text-data-display-datavis-nitro--docs) in most cases.** NITRO is designed to be simple out of the box while exposing power-user features for the click-curious — use `Table` only in lightweight situations where that overhead is genuinely unneeded.', + }, + }, }, tags: ['autodocs'], argTypes: { diff --git a/src/components/Table/Table.tsx b/src/components/Table/Table.tsx index c73935c2..6496465f 100644 --- a/src/components/Table/Table.tsx +++ b/src/components/Table/Table.tsx @@ -13,6 +13,10 @@ export interface TableProps extends React.TableHTMLAttributes /** * An accessible table component. * + * Prefer DataVis NITRO in most cases -- it is designed to be simple out of the box while + * exposing power-user features for click-curious users. Use `Table` only in lightweight + * situations where that overhead is genuinely unneeded. + * * @example * ```tsx *