import React from 'react' import { registerBlockType } from '@wordpress/blocks' import EmbedBlock from "./Components/EmbedBlockComponent/EmbedBlockComponent" /** * This BlockConfiguration to make the TS knows what is the data type. * If we don't put it like this, it will be error when we `registerBlockType()` */ registerBlockType('dm-pro/embed-video', EmbedBlock)