@wordpress/edit-post
Version:
Edit Post module for WordPress.
18 lines (15 loc) • 336 B
JavaScript
/**
* WordPress dependencies
*/
import { PanelRow } from '@wordpress/components';
import { PostAuthor as PostAuthorForm, PostAuthorCheck } from '@wordpress/editor';
export function PostAuthor() {
return (
<PostAuthorCheck>
<PanelRow>
<PostAuthorForm />
</PanelRow>
</PostAuthorCheck>
);
}
export default PostAuthor;