I have a component (`A`) which takes `block: RDOMB...
# react
l
I have a component (
A
) which takes
block: RDOMBuilder<INPUT>.() -> Unit
as a prop and applies it in its render function, this component is used in the render function of another component (
B
). Component
B
sets the
attrs
of the input including the
onChangeFunction
, is there any way to add additional functionality to the
onChangeFunction
of the provided
block
inside component
A
(whilst keeping the functionality provided by
B
)? I hope my question my makes sense.....