import { __ } from '@wordpress/i18n'; import { Notice, Button } from '@wordpress/components'; import { useValidationNotices } from '../../hooks'; export function ValidationNotices() { const { notices } = useValidationNotices(); if ( notices.length === 0 ) { return null; } return ( <> { __( 'Fix errors to continue:', 'mailpoet' ) } ); }