Skip to content

Commit

Permalink
use taginput for tags component
Browse files Browse the repository at this point in the history
  • Loading branch information
javierluraschi committed Mar 3, 2024
1 parent 0a1ea1c commit 4da446b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions streamfy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
# output value, and add a docstring for users.


def streamfy(name, key=None):
def taginput(name, key=None):
component_value = _component_func(name=name, key=key, default=0)
return component_value

if not _RELEASE:
st.subheader("Start")
streamfy("test", key="foo")
taginput("test", key="foo")
st.subheader("End")

0 comments on commit 4da446b

Please sign in to comment.