Consent History Table

data

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

Preview
Date & TimeActionCategoriesActions
Jan 1, 2024, 10:00 AMAccepted All
analyticsmarketing
Jan 2, 2024, 11:00 AMCustomized
analyticsmarketing

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.