@wordpress/edit-post
Version:
Edit Post module for WordPress.
16 lines (14 loc) • 379 B
JavaScript
const Section = ( { description, title, children } ) => (
<section className="edit-post-preferences-modal__section">
<h2 className="edit-post-preferences-modal__section-title">
{ title }
</h2>
{ description && (
<p className="edit-post-preferences-modal__section-description">
{ description }
</p>
) }
{ children }
</section>
);
export default Section;