Using jupyter-react, is it currently possible to do something like:
from mything import MyThing
from IPython.display import display
value = ''
def handleChange(event):
value = event.target.value
mything = MyThing(props={
'onChange': handleChange
})
display(mything)
I understand that jupyter-react does bi-directional comm between the kernel and front-end but I don't see any examples of how to use that.
Using jupyter-react, is it currently possible to do something like:
I understand that jupyter-react does bi-directional comm between the kernel and front-end but I don't see any examples of how to use that.