@wordpress/edit-post
Version:
Edit Post module for WordPress.
16 lines (14 loc) • 309 B
JavaScript
/**
* WordPress dependencies
*/
import { PanelRow } from '@wordpress/components';
import { PostTrash as PostTrashLink, PostTrashCheck } from '@wordpress/editor';
export default function PostTrash() {
return (
<PostTrashCheck>
<PanelRow>
<PostTrashLink />
</PanelRow>
</PostTrashCheck>
);
}