import { __ } from '@wordpress/i18n'; import { useBlockProps } from '@wordpress/block-editor'; export const edit = ( props ) => { const blockProps = useBlockProps(); return ( <>

{ __( 'FAQs', 'learnpress' ) }

); };