Child components inside custom components

I think you need to wrap it with withChildren when you register it. So, you’d want to do:

Builder.registerComponent(withChildren(Button), {...})

(withChildren comes from @builder.io/react )

1 Like