@wordpress/editor
Version:
Enhanced block editor for WordPress posts.
13 lines (10 loc) • 304 B
JavaScript
import clsx from 'clsx';
import { __experimentalVStack as VStack } from '@wordpress/components';
function PostPanelSection( { className, children } ) {
return (
<VStack className={ clsx( 'editor-post-panel__section', className ) }>
{ children }
</VStack>
);
}
export default PostPanelSection;