# Audit Log Table

A structured, inspectable record of actor, action, target, timestamp, and outcome for governed AI workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/audit-log-table.json
```

[Registry JSON](https://amro-ui.vercel.app/r/audit-log-table.json)

## Preview

```tsx
import { AuditLogTable } from "@amro-ui/react";

export function Preview() {
  return (
    <div className="grid min-h-72 w-full place-items-center rounded-xl border bg-background p-6 sm:p-10">
      <AuditLogTable />
    </div>
  );
}
```


## Source

### ui/audit-log-table.tsx

```tsx
"use client";

import "@/components/amro/amro-ui.css";

export { AuditLogTable } from "@/components/amro/components/shared";
export type { AuditLogTableProps } from "@/components/amro/components/shared";
```



## Usage

A structured, inspectable record of actor, action, target, timestamp, and outcome for governed AI workflows.

### Package

```tsx
import { AuditLogTable } from "@amro-ui/react";

<AuditLogTable />
```

### shadcn copy

```tsx
import { AuditLogTable } from "@/components/ui/audit-log-table";

<AuditLogTable />
```

