Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 1.33 KB

File metadata and controls

31 lines (18 loc) · 1.33 KB

Block navigation

The BlockNavigation component provides an overview of the hierarchical structure of all blocks in the editor. The blocks are presented vertically one below the other.

Blocks that have child blocks (such as group or column blocks) are presented with the parent at the top and the nested children below.

In addition to presenting the structure of the blocks in the editor, the BlockNavigation component lets users navigate to each block by clicking on its line in the hierarchy tree.

Block navigation View of a group block navigation

Table of contents

  1. Development guidelines
  2. Related components

Development guidelines

Usage

Renders a block navigation with default syles.

import { BlockNavigation } from '@wordpress/block-editor';

const MyNavigation = () => <BlockNavigation onSelect={ onClose } />;

Related components

Block Editor components are components that can be used to compose the UI of your block editor. Thus, they can only be used under a BlockEditorProvider in the components tree.