Is there standard way to programmatically (live) update width & height after the component gets created. For eg. updating width, height via html <input /> control rather than manually dragging handles to resize.
I know there are w & y props but as per docs, they are setting the initial values i.e. during component creation/Initialization time, right?
Is there standard way to programmatically (live) update
width
&height
after the component gets created. For eg. updatingwidth
,height
via html<input />
control rather than manually dragging handles to resize.I know there are
w
&y
props but as per docs, they are setting the initial values i.e. during component creation/Initialization time, right?thanks