1from panel.custom import Child, ReactComponent 2 3 4class Example(ReactComponent): 5 6 child = Child() 7 8 _esm = """ 9 export function render({ model }) { 10 return <button>{model.get_child("child")}</button> 11 }""" 12 13Example(child='A Markdown pane!').servable() 14 15