UNPKG

@wordpress/edit-post

Version:
16 lines (14 loc) 379 B
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;