Consent History Table

data

Table showing user consent history with timestamps, types, and status.

Preview

No preview available

Check the code examples below.

Installation

npm install @launchapp/design-system
Import
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

PropTypeDefaultDescription
entries*
ConsentEntry[]Array of consent history records.