update
+ The powerful `ui.element` for renderer any combination of components like your are writing react.
py
with ui.element("card", key="base_ele") as card:
with ui.element("card", key="base_ele2") as card2:
card2.add_child(ui.element("input", key="nst2_input"))
card2.add_child(ui.element("button", key="nst2_btn", text="Nest Submmit", variant="outline"))
card.add_child(card2)
card.add_child(ui.element("button", key="nst_btn", text="Hello World"))
**Full Changelog**: https://github.com/ObservedObserver/streamlit-shadcn-ui/compare/0.1.10...0.1.1