TagsTable
TagsTable
is a React component that displays all tags created by an entity and allows renaming and deleting these tags.
Preview

TagsTable
component preview.
Usage
Use in the Tagstable
component in your application as shown:
import { Tagstable } from "@team-monite/ui-widgets-react"
...
// TODO: This component must be rendered within the MoniteProvider wrapper
return (
<>
<Tagstable />
</>
);
Props
The following table shows all Tagstable
component properties, their types, and descriptions:
Prop | Type | Description |
---|---|---|
onChangeSort | function | This callback is called when the current sorting order for any column is changed. It returns the newly sorted field and order. |
The onChangeSort
takes one argument whose value is an object with the following fields:
sort
- the field name of column whose sort order was changed. For example,policy_name
.order
- the new sort order, eitherasc
ordesc
(
"sort": "policy_name",
"order": "asc" | "desc" | null
) => void
Updated 14 days ago