Getting components data inside a page

Hi guys!

I have a component called “addresses” and I imported it in one of my pages.
I have a form and a table showing added addresses (picture below)

In my page, how may I handle the data from this component? (I need to get the “table.values”)
Component state is not accessible in my page.

I suppose I would pass some ‘props’ but I am not sure how to do it using plasmic studio. While coding in react some years ago I handled it using code but now I am reallt rusty and plasmic studio is quite new to me.

Any help?

Thanks

Hello @tchellos-mbt.

You can create a public state inside the table component. This state will be public to the parent component or page that uses it. See the image bellow for an example.

1 Like

Thanks @icaro_guerra!!!