@wordpress/block-editor
Version:
16 lines (15 loc) • 455 B
JavaScript
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
/**
* Internal dependencies
*/
import Warning from '../warning';
import { jsx as _jsx } from "react/jsx-runtime";
const warning = /*#__PURE__*/_jsx(Warning, {
className: "block-editor-block-list__block-crash-warning",
children: __('This block has encountered an error and cannot be previewed.')
});
export default () => warning;
//# sourceMappingURL=block-crash-warning.js.map