outlinePlugin

Show an outline of the components currently on the canvas.

import { Editor, outlinePlugin } from "@reacteditor/core";
 
const outline = outlinePlugin();
 
export function Editor() {
  return <Editor plugins={[outline]} />;
}

This plugin is not included by default. Pass it via the plugins prop to enable the Outline panel in the plugin rail.

Params

This plugin does not accept any params.