# Editor Review Mode

A configurable, accessible editor review mode surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/editor-review-mode.tsx

```tsx
"use client";

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

export { EditorReviewMode } from "@/components/amro/components/editorial";
export type { EditorReviewModeProps } from "@/components/amro/components/editorial";
```



## Usage

A configurable, accessible editor review mode surface for AI product workflows.

### Package

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

<EditorReviewMode />
```

### shadcn copy

```tsx
import { EditorReviewMode } from "@/components/ui/editor-review-mode";

<EditorReviewMode />
```

