@wordpress/edit-post
Version:
Edit Post module for WordPress.
21 lines (18 loc) • 339 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;