• File: index.js
  • Full Path: /home/baristalay/public_html/Messages/src/index.js
  • Date Modified: 06/03/2026 11:17 AM
  • File size: 316 bytes
  • MIME-type: text/plain
  • Charset: utf-8
/**
 * External Dependencies
 */
import { isUndefined } from 'lodash'

/**
 * WordPress dependencies
 */
import { registerBlockType } from '@wordpress/blocks'

/**
 * Internal dependencies
 */
import edit from './edit'

/**
 * Register Schema block.
 */
registerBlockType(
	'rank-math/rich-snippet',
	{
		edit,
	}
)