UNPKG

@wordpress/edit-post

Version:
18 lines (15 loc) 336 B
/** * 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;