# Organisation Allocation Table

A configurable, accessible organisation allocation table surface for AI product workflows.

## Installation

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

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

## Preview

```tsx
import { OrganisationAllocationTable } 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">
      <OrganisationAllocationTable />
    </div>
  );
}
```


## Source

### ui/organisation-allocation-table.tsx

```tsx
"use client";

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

export { OrganisationAllocationTable } from "@/components/amro/components/learning";
export type { OrganisationAllocationTableProps } from "@/components/amro/components/learning";
```



## Usage

A configurable, accessible organisation allocation table surface for AI product workflows.

### Package

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

<OrganisationAllocationTable />
```

### shadcn copy

```tsx
import { OrganisationAllocationTable } from "@/components/ui/organisation-allocation-table";

<OrganisationAllocationTable />
```

