Edit File: get-block-map.js
/** * External dependencies */ import { getRegisteredBlockComponents } from '@kkart/blocks-registry'; /** * Internal dependencies */ import '../blocks/component-init'; /** * Map named Blocks to defined React Components to render on the frontend. * * @param {string} blockName Name of the parent block. */ export const getBlockMap = ( blockName ) => getRegisteredBlockComponents( blockName );