import { h } from 'preact'; import PropTypes from 'prop-types'; export const BasicEditor = ({ openModal }) => (
You are currently using the basic markdown editor that uses{' '} openModal('frontmatterShowing')}> Jekyll front matter . You can also use the rich+markdown editor you can find in{' '} UX settings .
); BasicEditor.propTypes = { toggleModal: PropTypes.func.isRequired, };