I have a parent component and want to pass some custom props down to the child. The below is my save
function. I want to pass the number of columns the user chose in the parent component and pass that down to the child.
<div {...useBlockProps.save()}>
<InnerBlocks.Content columns={columns}/>
</div>
The above does not work.