UNPKG

@wordpress/block-library

Version:
11 lines (9 loc) 232 B
import { __ } from '@wordpress/i18n'; import { useBlockProps } from '@wordpress/block-editor'; export default function NextPageEdit() { return ( <div { ...useBlockProps() }> <span>{ __( 'Page break' ) }</span> </div> ); }