@gechiui/block-editor
Version:
16 lines • 402 B
JavaScript
/**
* GeChiUI dependencies
*/
import { __unstableGetBlockProps as getBlockProps } from '@gechiui/blocks';
export function useBlockProps() {
let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
return { ...props,
style: { ...{
flex: 1
},
...props.style
}
};
}
useBlockProps.save = getBlockProps;
//# sourceMappingURL=index.native.js.map