Consent History Table
dataTable showing user consent history with timestamps, types, and status.
Preview
No preview available
Check the code examples below.
Installation
npm install @launchapp/design-systemImport
import { ConsentHistoryTable } from "@launchapp/design-system";Examples
Consent history
<ConsentHistoryTable entries={[ { id: "1", type: "analytics", granted: true, timestamp: "2024-01-01T10:00:00Z", version: "1.0" }, { id: "2", type: "marketing", granted: false, timestamp: "2024-01-02T11:00:00Z", version: "1.0" },]} />Props
| Prop | Type | Default | Description |
|---|---|---|---|
entries* | ConsentEntry[] | — | Array of consent history records. |