awacke1 commited on
Commit
200f1f8
1 Parent(s): 4ecdca7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -74,7 +74,7 @@ headers = {
74
 
75
  # Component Magic
76
  mycomponent = components.declare_component("mycomponent", path="mycomponent") # load from __init__.py and index.html in mycomponent folder
77
- from mycomponent import mycomponentvalue
78
  value = mycomponent(my_input_value="hello there")
79
  st.write("Received", value)
80
 
 
74
 
75
  # Component Magic
76
  mycomponent = components.declare_component("mycomponent", path="mycomponent") # load from __init__.py and index.html in mycomponent folder
77
+ from mycomponent import mycomponent
78
  value = mycomponent(my_input_value="hello there")
79
  st.write("Received", value)
80