22 lines
387 B
TypeScript
22 lines
387 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import './inner-blocks/register-components';
|
|
|
|
type MiniCartContentsBlockProps = {
|
|
attributes: Record< string, unknown >;
|
|
children: JSX.Element | JSX.Element[];
|
|
};
|
|
|
|
export const MiniCartContentsBlock = (
|
|
props: MiniCartContentsBlockProps
|
|
): JSX.Element => {
|
|
const { children } = props;
|
|
|
|
return <>{ children }</>;
|
|
};
|