diff --git a/src/components/data/attributelist/attributelist.tsx b/src/components/data/attributelist/attributelist.tsx index 87d28ca..9b947d2 100644 --- a/src/components/data/attributelist/attributelist.tsx +++ b/src/components/data/attributelist/attributelist.tsx @@ -21,8 +21,11 @@ export type AttributeListProps = }; /** - * AttributeList component, shows multiple `fields` in `object`. - * TODO: tooltip + * AttributeList Component + * + * Shows key/value pairs, optionally grouped by `title`. + * + * @typeParam T - The shape of a single item. */ export const AttributeList = ({ title = "", diff --git a/src/components/data/attributetable/attributetable.tsx b/src/components/data/attributetable/attributetable.tsx index 1fde5e7..5280aca 100644 --- a/src/components/data/attributetable/attributetable.tsx +++ b/src/components/data/attributetable/attributetable.tsx @@ -29,7 +29,8 @@ export type AttributeTableProps = { /** * AttributeTable Component * - * Shows key/value pairs, optionally grouped by `title`. + * Shows key/value pairs. + * @see DataGrid for more advanced table layout. * * @typeParam T - The shape of a single item. */