18 lines
409 B
JavaScript
18 lines
409 B
JavaScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { getRegisteredBlockComponents } from '@woocommerce/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 );
|