@wordpress/editor
Version:
Enhanced block editor for WordPress posts.
14 lines (13 loc) • 327 B
JavaScript
import { createElement } from "@wordpress/element";
/**
* Internal dependencies
*/
import PostTypeSupportCheck from '../post-type-support-check';
export default function PostSlugCheck({
children
}) {
return createElement(PostTypeSupportCheck, {
supportKeys: "slug"
}, children);
}
//# sourceMappingURL=check.js.map