mirror of
https://github.com/nikdoof/pocket-id.git
synced 2025-12-14 07:12:19 +00:00
21 lines
492 B
Svelte
21 lines
492 B
Svelte
<script lang="ts">
|
|
import * as Card from '$lib/components/ui/card';
|
|
import AuditLogList from './audit-log-list.svelte';
|
|
|
|
let { data } = $props();
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>Audit Log</title>
|
|
</svelte:head>
|
|
|
|
<Card.Root>
|
|
<Card.Header>
|
|
<Card.Title>Audit Log</Card.Title>
|
|
<Card.Description class="mt-1">See your account activities from the last 3 months.</Card.Description>
|
|
</Card.Header>
|
|
<Card.Content>
|
|
<AuditLogList auditLogs={data.auditLogs} />
|
|
</Card.Content>
|
|
</Card.Root>
|