UNPKG

@gechiui/block-editor

Version:
13 lines (10 loc) 283 B
/** * Internal dependencies */ import JustifyContentUI from './ui'; export function JustifyContentControl( props ) { return <JustifyContentUI { ...props } isToolbar={ false } />; } export function JustifyToolbar( props ) { return <JustifyContentUI { ...props } isToolbar />; }