UNPKG

@wordpress/edit-post

Version:
21 lines (18 loc) 339 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;