Site icon Hip-Hop Website Design and Development

Pass custom props to <InnerBlocks.Content />

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.