# Outline Tree Editor

A configurable, accessible outline tree editor surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/outline-tree-editor.json
```

[Registry JSON](https://amro-ui.vercel.app/r/outline-tree-editor.json)

## Preview

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


## Source

### ui/outline-tree-editor.tsx

```tsx
"use client";

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

export { OutlineTreeEditor } from "@/components/amro/components/editorial";
export type { OutlineTreeEditorProps } from "@/components/amro/components/editorial";
```



## Usage

A configurable, accessible outline tree editor surface for AI product workflows.

### Package

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

<OutlineTreeEditor />
```

### shadcn copy

```tsx
import { OutlineTreeEditor } from "@/components/ui/outline-tree-editor";

<OutlineTreeEditor />
```

