is there a way to access plasmic generated props for a child component in the parent? We have a component which has as a child a second component with a textInput. I can set the textInput prop in the child, but I cannot, for instance, do something like this in the parent:
return <PlasmicComponentA root={{ ref }}
componentWithTextField={{
textInput: (something for onChange)
}}
/>;
I’m finding that I instead have to define additional props in the child component just to pass an onChange function